Modes
Function: These commands determine whether the coordinates and axis midpoints are interpreted as absolute values or relative coordinates.
G Code | Description |
---|---|
| The coordinates ( |
| The coordinates ( |
| The axis midpoints ( |
| The axis midpoints ( |
Syntax
G90 G91 G98 G99
Coordinate value as absolute value
The interpolator moves to 10/10 and then to 100/10. The coordinates are interpreted as absolute values.
N0 G90 N10 G1 X10 Y10 F100 (Startposition) N20 G1 X100 (Nächste Position)
Coordinate value as relative value
The interpolator moves to 10/10 and then to 110/10. The coordinates are interpreted as relative values.
N0 G91 N10 G1 X10 Y10 F100 N20 G1 X100
Coordinate value as absolute value in I/J/K
The midpoint of the semicircle is at 150/0. The coordinates are interpreted as absolute values.
N00 G98 N10 G92 X100 Y0 (Startposition) N20 G2 X200 Y0 I150 J0 F100
Coordinate value as relative value in I/J/K
The midpoint of the semicircle is at 150/0. The coordinates are interpreted as relative values.
N00 G99 N10 G92 X100 Y0 (Startposition) N20 G2 X200 Y0 I50 J0 F100
For more information, see: Configuring Single Additional Axes as Modulo Axes (PA/PB/…)