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