PointCloudHasHiddenPoints

Verifies that a point cloud object has hidden points.

Syntax

rhinoscriptsyntax.PointCloudHasHiddenPoints(object_id)

rhinoscript.geometry.PointCloudHasHiddenPoints(object_id)

Parameters

object_id

Required.  String or Guid.  The object's identifier.

Returns

Boolean

True if successful, otherwise False.

None

On error.

Example

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."

Also See

PointCloudHasPointColors

PointCloudHidePoints

PointCloudPointColors