Spline Constructor (ListSplineVertex, ListDouble, Int16)
|
Initializes a new instance of the Spline class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public Spline(
List<SplineVertex> controlPoints,
List<double> knots,
short degree
)
Public Sub New (
controlPoints As List(Of SplineVertex),
knots As List(Of Double),
degree As Short
)
public:
Spline(
List<SplineVertex^>^ controlPoints,
List<double>^ knots,
short degree
)
new :
controlPoints : List<SplineVertex> *
knots : List<float> *
degree : int16 -> Spline
CONSTRUCTOR(
controlPoints AS List<SplineVertex>,
knots AS List<REAL8>,
degree AS SHORT
)
Parameters
- controlPoints
- Type: System.Collections.GenericListSplineVertex
Spline control points. - knots
- Type: System.Collections.GenericListDouble
Spline knot vector. - degree
- Type: SystemInt16
Degree of the spline curve. Valid values are 1 (linear), degree 2 (quadratic), degree 3 (cubic), and so on up to degree 10.
See Also