This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 409
2fc9e7b4 e49d 7d7d f52e 2a917ad2d396
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Generate a list of continuous cubic bezier curves that passes through a set of points.
Namespace: netDxf
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public static List<BezierCurveCubic> CreateFromFitPoints(
IEnumerable<Vector3> fitPoints
)
VB
Public Shared Function CreateFromFitPoints (
fitPoints As IEnumerable(Of Vector3)
) As List(Of BezierCurveCubic)
C++
public:
static List<BezierCurveCubic^>^ CreateFromFitPoints(
IEnumerable<Vector3>^ fitPoints
)
F#
static member CreateFromFitPoints :
fitPoints : IEnumerable<Vector3> -> List<BezierCurveCubic>
- IEnumerable(Vector3)
- List of points.
List(BezierCurveCubic)
A list of cubic bezier curves.