I find myself wishing there was a simple way to put a 0.100" (along the flat) 45 degree chamfer on parts, as an edge break. I wish I could just give the machine the X, Z coordinate of the corner to break and it would do it.
After some musing, I came up with this:
G69 X Z P Q U W F
Where:
X: X coord of the corner
Z: Z coord of the corner
P: 0 cut to right, 1 cut to left
Q: 0 cut outside-in, 1 cut inside-out
U: number of passes/subdivisions
W: lead in/out (default 0.010)
F: feed rate
So this:
G69 X1.0 Z0 P0 Q0 U2 W0.010 F0.005
Does this:
G0 X1.010 Z-0.0305
G1 X1.000 F0.005
X0.9695 Z0.000
Z0.010
G0 X1.010
G0 Z-0.071
G1 X1.00
X0.929 Z0.000
Z0.010
Is there a way to do this?