M_Rhino_Geometry_Curve_CreateTweenCurves - mcneel/rhinocommon-api-docs GitHub Wiki
Note: This API is now obsolete.
Creates curves between two open or closed input curves. Uses the control points of the curves for finding tween curves. That means the first control point of first curve is matched to first control point of the second curve and so on. There is no matching of curves direction. Caller must match input curves direction before calling the function.
Namespace: Rhino.Geometry
Assembly: RhinoCommon (in RhinoCommon.dll) Version: Rhino 6.0
C#
[ObsoleteAttribute("Use version that takes tolerance as input")]
public static Curve[] CreateTweenCurves(
Curve curve0,
Curve curve1,
int numCurves
)
VB
<ObsoleteAttribute("Use version that takes tolerance as input")>
Public Shared Function CreateTweenCurves (
curve0 As Curve,
curve1 As Curve,
numCurves As Integer
) As Curve()
- curve0
- Type: Rhino.Geometry.Curve
The first, or starting, curve. - curve1
- Type: Rhino.Geometry.Curve
The second, or ending, curve. - numCurves
- Type: System.Int32
Number of tween curves to create.
Type: Curve[]
An array of joint curves. This array can be empty.
Supported in: 5D58w
Obsolete (compiler warning) in 6.0.16224.21491
Curve Class
CreateTweenCurves Overload
Rhino.Geometry Namespace