Let’s see …
G02 = circular interpolation (clockwise)
G03 = circular interpolation (counter-clockwise)
Ok … let’s see if I remember this. We’ll start with an arc.
You first have to identify the point at which you want to start your arc. We’ll use (1,4) as our starting point.
The next step is the trickiest - you need to determine what the center point of your circle will be. mapping the whole thing out on graph paper is the easier way to do it, because then you can calculate the radius and you’ll know where the centerpoint is (without a whole lot of trial and error on the actual part)
the coordiantes for your center point are your (I,J) coordinates. The beginning and end points will always be (X,Y) coordinates
Then, you need to identify your end point. We’ll go with a quarter of a circle, which will put us at (6,1)
make sure that there is an equal distance from the center point to your beginning and end points! Otherwise, your mill will hate you and make your part look funny
For example:
N08 G01 X1 Y4 ------ will move your cutter to (1,4)
N09 G02 X4 Y7 I4 J4 ------- (4,4) - your (I,J) coordinates - is your center point. the cutter will move in a clockwise position until it hits (4,7) - your (X,Y) coordinates.
If you want a larger arc, change your (X,Y) coordinates.
For example:
N09 G02 X7 Y4 I4 J4 — will give you half a circle.
N09 G02 X4 Y1 I4 J4 — will give you three quarters of a circle.
N09 G02 X1 Y4 I4 J4 — will give you a full circle.
Of course, you’ll have to tweak this a bit to get the exact size circle you want and such but … I hope this helped! (If you want a drawing, PM me!)