Programming manual
CNC 8070
GEOMETRY ASSISTANCE
Coordinate system rotation, pattern rotation, (G73)
7.
(SOFT V02.0X)
141
Programming example
Assuming the initial point is X0 Y0:
%L PROFILE (Subroutine with the profile)
G01 X21 Y0 F300
G02 Q0 I5 J0
G03 Q0 I5 J0
G03 Q180 I-10 J0
M29 (End of subroutine)
%PROGRAM (Program)
$FOR P0=1, 8, 1 (Repeats the profile and the pattern rotation 8 times)
LL PROFILE (Machining of the profile)
G73 Q45 (Coordinate rotation)
$ENDFOR
M30