I want a CNC pro Simulator report And it must show z x y
I want a ( CNC - pro - Simulator) report
 And it must show z, x , y
 The report should be as an introduction
 For the CNC - pro - Simulator software
 The class is manufacturing processing
 Thank you
Solution
CNCSimulator Pro from scratch. We are going to make a very simple part, milling a slot and drilling four holes on a 100 x 100 x 20 millimeter workpiece. For simplicity we are going to ignore radius compensation and we work only in absolute coordinates.
Program code for the CNC pro simulator tutorial :
G92 X30 Y30 Z20
 T1 M6
 G0 X15 Y15 Z2
 G1 Z-5 F250 S2000 M3
 Y70
 G2 X30 Y85 I15 J0
 G1 X85
 Y15
 X15
 G0 Z2
 T2 M6
 G0 X30 Y30 Z2
 G81 Z-15 R1 M3 M8
 Y70
 X70
 Y30
 G80
 Z50
 M30

