Returns Rhino's world XY plane. This plane could also be created as follows:
rhinoscriptsyntax.PlaneFromFrame( [0,0,0], [1,0,0], [0,1,0] )
rhinoscriptsyntax.WorldXYPlane()
rhinoscript.plane.WorldXYPlane()
None.
Plane |
Rhino's world XY plane. |
import rhinoscriptsyntax as rs
view = rs.CurrentView()
rs.ViewCPlane( view, rs.WorldXYPlane() )