BezierGetLinearCurvePointsEquidistant Method

Return a collection of equidistantly spaced points along a linear Bezier curve, which is identical to the set of points along a natural linear curve.

Definition

Namespace: Geometry
Assembly: Geometry (in Geometry.dll) Version: 25.2414.4032
C#
public static List<FPoint> GetLinearCurvePointsEquidistant(
	FPoint p0,
	FPoint p1,
	int count
)

Parameters

p0  FPoint
Starting point.
p1  FPoint
Ending point.
count  Int32
Count of points to sample on the curve.

Return Value

ListFPoint
Reference to a collection of equidistantly spaced points along the specified linear curve (line).

See Also