G01 Linear Interpolation
Format
- G1 X_Y_Z_
- G01 X_Y_Z_
Description
This command provides linear motion from point-to-point at specified speed, i.e. the tool moves along a line from the beginning point to the target point.All coordinate axes can move simultaneously.
This command is modal in a machining program.
Programming Example
N05 G00 G90 X40 Y48 Z2 S500 M03 'tool rapidly moves to X40, Y48, Z2, and the spindle rotates CW at 500 rpm
N10 G01 Z-12 F100 'tool goes to Z-12, with feed speed as 100 mm/min
N15 X20 Y18 Z-10 'tool moves to P2 along a line
N20 G00 Z100 'rapid movement
N25 X-20 Y80
N30 M02 'end of the program