Programming Motion Commands
4.3 Rapid traverse movement (G0, RTLION, RTLIOF)
Fundamentals
Programming Manual, 10.2004 Edition, 6FC5 298-7AB00-0BP1
4-11
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
.