NCPlayer provides an automatic conversion feature for transforming an NC program (part program) from the absolute coordinate system (G90) to the incremental coordinate system (G91). This makes it easier to edit and adapt programs for machines that require incremental moves for each command.
G91 is inserted at the beginning.G0, G1, G2, G3, etc.) are recalculated relative to the previous position.G90 is automatically added to return to absolute mode.G91 there was a G0 move along the Z-axis, it remains unchanged to prevent positioning errors.Before: G90 G0 X0 Y0 G1 X50 Y50 G1 X100 Y100
After: G91 G0 X0 Y0 G1 X50 Y50 G1 X50 Y50 G90
Converting G90 → G91 is useful for: