G00 - Rapid Move

Rapid move machine to programmed position.

G00 sets the CNC movement mode to rapid traverse, also known as rapid travel. This code is used to move the CNC table and/or spindle in a straight line at the maximum speed. However, G00 doesn't control the speed of the machine's motion, It ignores any feed rate set with the F code, and instead moves as fast as possible. G00 can be used to move any combination of the machine's axes, including the X, Y, and Z axes.

Syntax

G00 <X..W @^>

Parameters

X..W Axis position. (optional)
@^ Distance and angle. (optional)

Syntax

G00 H E

Parameters

H Axis number (0=X, 1=Y, 2=Z, 3=A, 4=B, 5=C, 6=U, 7=V, 8=W).
E Axis value.

Examples

Rapid move to X100 and Y-30.

G00 X100 Y-30

Rapid move axis 2 (Z) to -20.

G00 H2 E-20

See also

G01