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 411
5e516dcc f9d6 97d0 3762 cb654a3f93fd
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
Initializes a new instance of the Spline
class.
Namespace: netDxf.Entities
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public Spline(
IEnumerable<Vector3> fitPoints
)
VB
Public Sub New (
fitPoints As IEnumerable(Of Vector3)
)
C++
public:
Spline(
IEnumerable<Vector3>^ fitPoints
)
F#
new :
fitPoints : IEnumerable<Vector3> -> Spline
- IEnumerable(Vector3)
- Spline fit points.
The resulting spline curve will be created from a list of cubic bezier curves that passes through the specified fit points.