Verifies that a point cloud object has hidden points.
rhinoscriptsyntax.PointCloudHasHiddenPoints(object_id)
rhinoscript.geometry.PointCloudHasHiddenPoints(object_id)
object_id |
Required. String or Guid. The object's identifier. |
Boolean |
True if successful, otherwise False. |
None |
On error. |
import rhinoscriptsyntax as rs
obj = rs.GetObject("Select a point cloud", rs.filter.pointcloud)
if rs.PointCloudHasHiddenPoints(obj):
print "The point cloud has hidden points."
else:
print "The point cloud has no hidden points."