PlaneTransform

Transforms a plane.

Syntax

rhinoscriptsyntax.PlaneTransform (plane, xform)

rhinoscript.plane.PlaneTransform (plane, xform)

Parameters

plane

Required.  The plane to transform.

xform

Required.  List or Transform.  A valid 4x4 transformation matrix.

Returns

Plane

The resulting plane if successful.

None

On error.

Example

import rhinoscriptsyntax as rs

plane = rs.ViewCPlane()

xform = rs.XformRotation(45.0, plane.Zaxis, plane.Origin)

plane = rs.PlaneTransform(plane, xform)

rs.ViewCPlane(None, plane)

Also See

PlaneFromFrame

PlaneFromNormal

PlaneFromPoints