; End of path command M30 (Endpath / Program End)
; Linear interpolation to end point (endpath) G01 X[line_ep.X] Y[line_ep.Y] F100
(PARAMETRIC PROGRAM) (TOOL: ROUTER / CIX) START PGM ; Macro definition for line from point to endpath ; Variable declaration SET VAR start_point = [X,Y] (e.g., X0 Y0) SET VAR line_ep = [X,Y] (e.g., X100 Y50)
END PGM
Biesse Cix: Macro Start_point Line_ep Endpath
; End of path command M30 (Endpath / Program End)
; Linear interpolation to end point (endpath) G01 X[line_ep.X] Y[line_ep.Y] F100
(PARAMETRIC PROGRAM) (TOOL: ROUTER / CIX) START PGM ; Macro definition for line from point to endpath ; Variable declaration SET VAR start_point = [X,Y] (e.g., X0 Y0) SET VAR line_ep = [X,Y] (e.g., X100 Y50)
END PGM