Verifies that an object is a closed, solid object.
Rhino.IsObjectSolid (strObject)
strObject |
Required. String. The identifier of an object. |
True |
The object is solid. |
False |
The object is not solid. |
Null |
On error. |
Dim strObject
strObject = Rhino.GetObject("Select object")
If Rhino.IsObjectSolid (strObject) Then
Rhino.Print "The object is solid."
Else
Rhino.Print "The object is not solid."
End If