IsObjectNormal

Verifies that an object is normal.  Normal objects are visible, can be snapped to, and can be selected.

Syntax

rhinoscriptsyntax.IsObjectNormal (object_id)

rhinoscript.object.IsObjectNormal (object_id)

Parameters

object_id

Required.  String or Guid.  The identifier of an object.

Returns

True

The object is normal.

False

The object is not normal.

Example

import rhinoscriptsyntax as rs

#Do something here...

if rs.IsObjectNormal(object):

    print "The object is normal."

else:

    print "The object is not normal."

Also See

IsObject

IsObjectHidden

IsObjectInGroup

IsObjectLocked

IsObjectReference

IsObjectSelectable

IsObjectSelected

IsObjectSolid