Pauses for user input of a point constrained to a surface object.
Rhino.GetSurfaceIsoParamPoint (strObject [, strMessage])
strObject |
Required. String. The surface object's identifier. |
strMessage |
Optional. String. A prompt or message. |
Array |
An array of selection information if successful. The elements of the array are as follows:
|
||||||||
Null |
If not successful, or on error. |
Sub MyExtractIsoCurve
Const rhObjectSurface = 8
Dim strObject, arrResult
strObject = Rhino.GetObject("Select surface for isocurve extraction", rhObjectSurface)
If Not IsNull(strObject) Then
arrResult = Rhino.GetSurfaceIsoParamPoint(strObject, "Select location for extraction")
If IsArray(arrResult) Then
Rhino.ExtractIsoCurve strObject, Array(arrResult(0),arrResult(1)), arrResult(2)
End If
End If
End Sub