Description:

Makes a curve blend between 2 curves at the parameters specified with the directions and continuities specified

Syntax:
public static Curve CreateBlendCurve(
Curve curve0,
double t0,
bool reverse0,
BlendContinuity continuity0,
Curve curve1,
double t1,
bool reverse1,
BlendContinuity continuity1
)
Parameters:
  • curve0
  • Type: Curve
  • First curve to blend from
  • t0
  • Type: double
  • Parameter on first curve for blend endpoint
  • reverse0
  • Type: bool
  • 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
  • curve1
  • Type: Curve
  • Second curve to blend from
  • t1
  • Type: double
  • Parameter on second curve for blend endpoint
  • reverse1
  • Type: bool
  • 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
Returns:
Type: Curve
The blend curve on success. None on failure
Available since:
5.0

Description:

Create a Blend curve between two existing curves.

Syntax:
public static Curve CreateBlendCurve(
Curve curveA,
Curve curveB,
BlendContinuity continuity,
double bulgeA,
double bulgeB
)
Parameters:
  • curveA
  • Type: Curve
  • Curve to blend from (blending will occur at curve end point).
  • curveB
  • Type: Curve
  • Curve to blend to (blending will occur at curve start point).
  • bulgeA
  • Type: double
  • Bulge factor at curveA end of blend. Values near 1.0 work best.
  • bulgeB
  • Type: double
  • Bulge factor at curveB end of blend. Values near 1.0 work best.
Returns:
Type: Curve
A curve representing the blend between A and B or None on failure.
Available since:
5.0

Description:

Create a Blend curve between two existing curves.

Syntax:
public static Curve CreateBlendCurve(
Curve curveA,
Curve curveB,
BlendContinuity continuity
)
Parameters:
  • curveA
  • Type: Curve
  • Curve to blend from (blending will occur at curve end point).
  • curveB
  • Type: Curve
  • Curve to blend to (blending will occur at curve start point).
Returns:
Type: Curve
A curve representing the blend between A and B or None on failure.
Available since:
5.0

/
/
/
CreateBlendCurve

CreateBlendCurve method

Class:  Rhino.Geometry.Curve

Nothing found