Hi Guys,
Is there a way to rotate the global x and y axis of Rhino from the origin 0,0 using grasshopper?
I tried to rotate the geometry but it will be efficient if I could manage to rotate the global x and y axis?
thanks
Is there a way to rotate the global x and y axis of Rhino from the origin 0,0 using grasshopper?
I tried to rotate the geometry but it will be efficient if I could manage to rotate the global x and y axis?
thanks
private void RunScript(Plane plane)
{
RhinoDocument.Views.ActiveView.ActiveViewport.
SetConstructionPlane(plane);
}
SetConstructionPlane.gh (4.4 KB)
Thank you very much guys for your help, the plane is rotating but i am wondering how can I host the geometry to the x and y of the plane so that it will rotate as well, at the moment it rotate the plane but not the geometry, thanks.
What are you rotating from? The Orient Component will take input geometry from Plane A and transform it to Plane B.
Thanks Japhy, kind regards.