WorldZXPlane

Returns Rhino's world ZX plane. This plane could also be created as follows:

rhinoscriptsyntax.PlaneFromFrame( (0,0,0), (0,0,1), (1,0,0) )

Syntax

rhinoscriptsyntax.WorldZXPlane()

rhinoscript.plane.WorldZXPlane()

Parameters

None.

Returns

Plane

Rhino's world ZX plane.

Example

import rhinoscriptsyntax as rs

view = rs.CurrentView()

rs.ViewCPlane( view, rs.WorldZXPlane() )

Also See

WorldXYPlane

WorldYZPlane