Verifies that a surface or polysurface can be unrolled (developed). For more information on developable surfaces, see the Rhino help file.
Rhino.IsSurfaceUnrollable (strSurface)
strSurface |
Required. String. The identifier of the surface or polysurface to test. |
Boolean |
True or False if successful. |
Null |
On error. |
Dim strSurface
strSurface = Rhino.GetObject("Select surface or polysurface to test", 8 + 16)
If Not IsNull(strSurface) Then
Msgbox Rhino.IsSurfaceUnrollable(strSurface)
End If