RhinoCommon API
CurveCreateBlendCurve Method (Curve, Curve, BlendContinuity, Double, Double) |
Create a Blend curve between two existing curves.
Namespace: Rhino.Geometry
Assembly: RhinoCommon (in RhinoCommon.dll)
Since: 5.0

public static Curve CreateBlendCurve( Curve curveA, Curve curveB, BlendContinuity continuity, double bulgeA, double bulgeB )
Public Shared Function CreateBlendCurve ( curveA As Curve, curveB As Curve, continuity As BlendContinuity, bulgeA As Double, bulgeB As Double ) As Curve
Parameters
- curveA
- Type: Rhino.GeometryCurve
Curve to blend from (blending will occur at curve end point). - curveB
- Type: Rhino.GeometryCurve
Curve to blend to (blending will occur at curve start point). - continuity
- Type: Rhino.GeometryBlendContinuity
Continuity of blend. - bulgeA
- Type: SystemDouble
Bulge factor at curveA end of blend. Values near 1.0 work best. - bulgeB
- Type: SystemDouble
Bulge factor at curveB end of blend. Values near 1.0 work best.
Return Value
Type: CurveA curve representing the blend between A and B or null on failure.
