M_Rhino_Geometry_Curve_CreateBlendCurve_2 - mcneel/rhinocommon-api-docs GitHub Wiki
Curve.CreateBlendCurve Method (Curve, Double, Boolean, BlendContinuity, Curve, Double, Boolean, BlendContinuity)
Makes a curve blend between 2 curves at the parameters specified with the directions and continuities specified
Namespace: Rhino.Geometry
Assembly: RhinoCommon (in RhinoCommon.dll) Version: Rhino 6.0
C#
public static Curve CreateBlendCurve(
Curve curve0,
double t0,
bool reverse0,
BlendContinuity continuity0,
Curve curve1,
double t1,
bool reverse1,
BlendContinuity continuity1
)
VB
Public Shared Function CreateBlendCurve (
curve0 As Curve,
t0 As Double,
reverse0 As Boolean,
continuity0 As BlendContinuity,
curve1 As Curve,
t1 As Double,
reverse1 As Boolean,
continuity1 As BlendContinuity
) As Curve
- curve0
- Type: Rhino.Geometry.Curve
First curve to blend from - t0
- Type: System.Double
Parameter on first curve for blend endpoint - reverse0
- Type: System.Boolean
If false, the blend will go in the natural direction of the curve. If true, the blend will go in the opposite direction to the curve - continuity0
- Type: Rhino.Geometry.BlendContinuity
Continuity for the blend at the start - curve1
- Type: Rhino.Geometry.Curve
Second curve to blend from - t1
- Type: System.Double
Parameter on second curve for blend endpoint - reverse1
- Type: System.Boolean
If false, the blend will go in the natural direction of the curve. If true, the blend will go in the opposite direction to the curve - continuity1
- Type: Rhino.Geometry.BlendContinuity
Continuity for the blend at the end
Type: Curve
The blend curve on success. null on failure
Supported in: 6.0.16224.21491, 5D58w
Curve Class
CreateBlendCurve Overload
Rhino.Geometry Namespace