Programming manual
354
CNC 8070
13.
COORDINATE TRANSFORMATION
Tool perpendicular to the plane (#TOOL ORI)
(SOFT V02.0X)
346
The following example shows how to drill three holes with different
inclination in the same plane:
#CS ON [1] [MODE .....] (Defines the incline plane)
#TOOL ORI (Perpendicular tool, request)
G0 <P1> (Movement to point P1)
(The spindle orients perpendicular to the plane during this positioning
move)
G1 G91 Z-10 F1000 (Drilling)
G0 Z10 (Withdrawal)
G0 <P2> (Movement to point P2)
G90 B0 (Orients the tool with machine coordinates)
#MCS ON (Programming in machine coordinates)
G1 G91 Z-10 F1000 (Drilling)
G0 Z10 (Withdrawal)
#MCS OFF (End of programming in machine
coordinates. It recovers plane coordinates)
G0 <P3> (Movement to point P3)
G90 B-100 (Positions the tool at 100º)
#CS OFF
#CS ON [2] [MODE6 .....] (Defines the incline plane perpendicular to
the tool)
G1 G91 Z-10 F1000 (Drilling)
G0 Z30 (Withdrawal)
#CS OFF
M30