Spline Constructor (ListSplineVertex, 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,
short degree
)
Public Sub New (
controlPoints As List(Of SplineVertex),
degree As Short
)
public:
Spline(
List<SplineVertex^>^ controlPoints,
short degree
)
new :
controlPoints : List<SplineVertex> *
degree : int16 -> Spline
CONSTRUCTOR(
controlPoints AS List<SplineVertex>,
degree AS SHORT
)
Parameters
- controlPoints
- Type: System.Collections.GenericListSplineVertex
Spline control points. - 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