- You are here:
- AM.CO.ZABuythisCNC Utilities Homepage
- PowerRoute-CNC-Router
- Mill Programming Manual.pdf
- Page 8 of 151
1. G Function Description
1.2 G code description
1.2.1 G00: POSITIONING
Command form:
G00 X Y Z ;
X、Y、Z: Specified point
Description:
each axles move to appointed point in no interpolation status, X、Y、Z
is the final position, use G90/G91 to design absolute or increment value.
<Notice>: the movement mode can decide by parameter #411
(0: linear, 1: each axle move in max speed independently)
PIC:
Y
20
start point
20
Program
20
70
zero point
End point
X
Program description:
1. first way(absolute): G90 G00 X90.0 Y40.0;
//use difference value between appointed point and zero point to do
straight interpolation to appointed point
2. second way(increment): G91 G00 X70.0 Y20.0;
// use difference value between appointed point and initial point to do
straight interpolation to appointed point
3