Reverses the direction of a clipping plane object.
Rhino.FlipClippingPlane (strObject)
strObject |
Required. String. The identifier of the clipping plane object to flip. |
Boolean |
True if successful, False otherwise. |
Null |
On error. |
Const rhClippingPlane = &h20000000
Dim strObject
strObject = Rhino.GetObject("Select clipping plane to flip", rhClippingPlane)
If Not IsNull(strObject) Then
Rhino.FlipClippingPlane strObject
End If