The Convert IJK Arcs to R function replaces circular interpolation commands
G02 / G03 with arc center parameters I, J, or K
with equivalent commands using the radius parameter R.
This format is often used in manually written NC programs or for simplified geometry representation. NCPlayer supports all 4 possible conversions: Convert IJK INC arcs → IJK ABS, Convert IJK ABS arcs → IJK INC, Convert IJK (Incremental) to R arcs, and Convert IJK (Absolute) to R arcs.
G02 / G03 commands with arc center coordinates (I, J, K).G17 — arc center is defined by I, J (Z-axis is perpendicular).G18 — by I, K (Y-axis is perpendicular).G19 — by J, K (X-axis is perpendicular).R, preserving arc direction (CW/CCW) and comments.G7x, G8x, G10 or lines that are comments.G02 / G03 with IJK is found:
R parameter with the calculated value.; Before:
G17
N10 G02 X50 Y50 I0 J25 F200
N20 G03 X0 Y0 I-25 J0
; After:
G17
N10 G02 X50 Y50 R25 F200
N20 G03 X0 Y0 R25
R parameter.R sign (positive or negative) produces the correct toolpath.