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.
Namespace: GeometryAssembly: Geometry (in Geometry.dll) Version: 25.2820.4317
public static List<FVector2> GetLinearCurvePointsEquidistant(
FVector2 p0,
FVector2 p1,
int count
)
Public Shared Function GetLinearCurvePointsEquidistant (
p0 As FVector2,
p1 As FVector2,
count As Integer
) As List(Of FVector2)
No code example is currently available or this language may not be supported.
- p0 FVector2
-
Starting point.
- p1 FVector2
-
Ending point.
- count Int32
-
Count of points to sample on the curve.
ListFVector2
Reference to a collection of equidistantly spaced points
along the specified linear curve (line).