Reverses the normal direction of a mesh object.
Rhino.FlipMesh (strObject)
strObject |
Required. String. The object's identifier. |
Boolean |
True if successful, otherwise False. |
Null |
On error. |
Dim strObject
strObject = Rhino.GetObject("Select a mesh")
If Rhino.IsMesh(strObject) Then
Rhino.FlipMesh strObject
End If