Creates curves between two open or closed input curves.
Rhino.TweenCurve (strCurve0, strCurve1 [, intNumCurves [, intMethod [, intNumSamples]]]])
strCurve0 |
Required. String. The first curve object's identifier. |
||||||||
strCurve1 |
Required. String. The second curve object's identifier. |
||||||||
intNumCurves |
Optional. Number. The number of curves to create. The default is 1. |
||||||||
intMethod |
Optional. Number. The method for refining the output curves, where:
|
||||||||
intNumSamples |
Optional. Number. The number of samples points to is intMethod = 2. The default is 10. |
Array |
The identifier of the new curve objects if successful. |
Null |
If not successful, or on error. |
Const rhObjectCurve = 4
Dim strCurve0, strCurve1
strCurve0 = Rhino.GetObject("Select the first curve", rhObjectCurve)
strCurve1 = Rhino.GetObject("Select the second curve", rhObjectCurve)
Rhino.TweenCurve strCurve0, strCurve1