Motion commands
4.3 Rapid traverse movement (G0, RTLION, RTLIOF)
Fundamentals
126 Programming Manual, 11/2006, 6FC5398-1BP10-2BA0
Example of milling
;
<
1
1
Start positions or tool change points, retracting the tool, etc., are approached with G0.
N10 G90 S400 M3
;Absolute dimensioning, spindle clockwise
N20 G0 X30 Y20 Z2
;Approach start position
N30 G1 Z-5 F1000
;Tool infeed
N40 X80 Y65
;Travel on straight line
N50 G0 Z2
N60 G0 X-20 Y100 Z100 M30
;Retract tool, program end
Example of turning
=
;
1
1
.