Verifies that an object is normal. Normal objects are visible, can be snapped to, and can be selected.
rhinoscriptsyntax.IsObjectNormal (object_id)
rhinoscript.object.IsObjectNormal (object_id)
object_id |
Required. String or Guid. The identifier of an object. |
True |
The object is normal. |
False |
The object is not normal. |
import rhinoscriptsyntax as rs
#Do something here...
if rs.IsObjectNormal(object):
print "The object is normal."
else:
print "The object is not normal."