IsXformZero

Verifies that a matrix is the zero transformation.

 

0

0

0

0

0

0

0

0

0

0

0

0

0

0

0

0

Syntax

rhinoscriptsyntax.IsXformZero (xform)

rhinoscript.transformation.IsXformZero (xform)

Parameters

xform

Required.  List or Rhino.Geometry.Transform.  A 4x4 transformation matrix.

Returns

Boolean

True or False indicating success or failure.

Example

import rhinoscriptsyntax as rs

xform = rs.XformZero()

print rs.IsXformZero(xform)

Also See

IsXformIdentity

IsXformSimilarity

XformZero