Verifies an object is a point cloud object.
Rhino.IsPointCloud (strObject)
strObject |
Required. String. The object's identifier. |
Boolean |
True if successful, otherwise False. |
Null |
On error. |
Dim strObject
strObject = Rhino.GetObject("Select a point cloud")
If Rhino.IsPointCloud(strObject) Then
Rhino.Print "The object is a point cloud."
Else
Rhino.Print "The object is not a point cloud."
End If