Click or drag to resize
AB4D logo

BezierCurve Constructor

Creates Bezier curve with the specified control points list. Note that each curve segment requires 3 control points (one for the position on the curve and two to define tangents to that position).

Namespace: Ab3d.Utilities
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.0.8746.1045
Syntax
C#
public BezierCurve(
	IList<Point3D> controlPoints
)

Parameters

controlPoints  IListPoint3D
List of control points. Note that each curve segment requires 3 control points (one for the position on the curve and two to define tangents to that position).
Remarks

Creates Bezier curve with the specified control points list. Note that each curve segment requires 3 control points (one for the position on the curve and two to define tangents to that position).

To create Bezier curve that goes through specified points and without specifying tangent positions use the CreateFromCurvePositions(IListPoint3D) or CreateFromCurvePositions(IListPoint3D, Double) static methods.

See Also