I’ve seen this link referring to G68 for coordinate rotation. It seems like an ideal way to pick up an angle for a part that has been flipped and is now held by a round boss. This link was from a Tormach account if I remember correctly so that would imply G68 support in PathPilot.
Fusion has an option to probe a face to pickup the angle but it’s not implemented in the post processor.
case “probing-x-plane-angle”:
error(localize(“Probing cycle '” + cycleType + “’ is not supported.”));
break;
case “probing-y-plane-angle”:
error(localize(“Probing cycle '” + cycleType + “’ is not supported.”));
break;
The Tormach CAM Driven Probing page seems to match the approach used in the Fusion post processor. It of course doesn’t list any functions called probing-x-plane-angle or probing-y-plane-angle.
I discovered that the XoomSpeed post processor does implement that through a function call I haven’t seen before. The code from that post processor does some unexpected things with regard to Z height and I’m not sure I’m comfortable trusting the safety of the probe to its output.
o<f360_probing-x-plane-angle> call …
Before I dig deeper into a solution I thought I would ask if anyone else has solved the problem.
Of course the simplest path for me would be to have support for those function in PathPilot and Fusion. The alternative might be to alter the Fusion default post processor to implement some of the XoomSpeed logic for those two probe types.