Hi,
Does anyone know that how to get the on_xform planetoplane func in cpp?
Hi @Panda_ASW,
This is the C++ functional equivalent to RhinoCommon’s Transform.PlaneToPlane
function:
ON_Plane source_plane = ...
ON_Plane target_plane = ...
ON_Xform xform;
xform.Rotation(source_plane, target_plane);
// todo...
– Dale
Hi,Fugier!
Many Thank!!!