M_Rhino_Geometry_Curve_CreateBlendCurve_1 - mcneel/rhinocommon-api-docs GitHub Wiki
Create a Blend curve between two existing curves.
Namespace: Rhino.Geometry
Assembly: RhinoCommon (in RhinoCommon.dll) Version: Rhino 6.0
C#
public static Curve CreateBlendCurve(
Curve curveA,
Curve curveB,
BlendContinuity continuity,
double bulgeA,
double bulgeB
)
VB
Public Shared Function CreateBlendCurve (
curveA As Curve,
curveB As Curve,
continuity As BlendContinuity,
bulgeA As Double,
bulgeB As Double
) As Curve
- curveA
- Type: Rhino.Geometry.Curve
Curve to blend from (blending will occur at curve end point). - curveB
- Type: Rhino.Geometry.Curve
Curve to blend to (blending will occur at curve start point). - continuity
- Type: Rhino.Geometry.BlendContinuity
Continuity of blend. - bulgeA
- Type: System.Double
Bulge factor at curveA end of blend. Values near 1.0 work best. - bulgeB
- Type: System.Double
Bulge factor at curveB end of blend. Values near 1.0 work best.
Type: Curve
A curve representing the blend between A and B or null on failure.
Supported in: 6.0.16224.21491, 5D58w
Curve Class
CreateBlendCurve Overload
Rhino.Geometry Namespace