CNC arc programming example this cnc program shows how two arcs G03 G02 can be joint together.
CNC Arc Programming G02 G03 Example
O0001 N001 G0 X40 Z5; (Rapid position) N002 M03 S200; (Start spindle) N003 G01 X0 Z0 F900; (Approach workpiece) N005 G03 U24 W-24 R15; (Cut R15 arc) N006 G02 X26 Z-31 R5; (Cut R5 arc) N007 G01 Z-40; (Cutф26) N008 X40 Z5; (Return to starting point) N009 M30; (End of program)