BezierGetCubicCurvePointsEquidistant Method
Return a collection of equidistantly spaced points along a cubic
Bezier curve.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2414.4032
public static List<FPoint> GetCubicCurvePointsEquidistant(
FPoint p0,
FPoint p1,
FPoint p2,
FPoint p3,
int count
)
Public Shared Function GetCubicCurvePointsEquidistant (
p0 As FPoint,
p1 As FPoint,
p2 As FPoint,
p3 As FPoint,
count As Integer
) As List(Of FPoint)
No code example is currently available or this language may not be supported.
- p0 FPoint
-
Starting point.
- p1 FPoint
-
Control point 1.
- p2 FPoint
-
Control point 2.
- p3 FPoint
-
Ending point.
- count Int32
-
Count of points to sample on the curve.
ListFPoint
Reference to a collection of equidistantly spaced points
along the specified cubic curve that approximate the curve's
natural edge.
In this version, all segments except the last will be of exactly
the same length and the last segment will absorb any minor discrepancy
between the next-to-last point and the ending point.