Verifies a surface object has been trimmed.
Rhino.IsSurfaceTrimmed (strObject)
strObject |
Required. String. The object's identifier. |
Boolean |
True if successful, otherwise False. |
Null |
On error. |
Const rhObjectSurface = 8
Dim strObject
strObject = Rhino.GetObject("Select a surface", rhObjectSurface)
If Rhino.IsSurfaceTrimmed(strObject) Then
Rhino.Print "The surface is trimmed."
Else
Rhino.Print "The surface is not trimmed."
End If