Polyline Constructor (IEnumerableVector3, Boolean)
|
Initializes a new instance of the Polyline3d class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public Polyline(
IEnumerable<Vector3> vertexes,
bool isClosed
)
Public Sub New (
vertexes As IEnumerable(Of Vector3),
isClosed As Boolean
)
public:
Polyline(
IEnumerable<Vector3>^ vertexes,
bool isClosed
)
new :
vertexes : IEnumerable<Vector3> *
isClosed : bool -> Polyline
CONSTRUCTOR(
vertexes AS IEnumerable<Vector3>,
isClosed AS LOGIC
)
Parameters
- vertexes
- Type: System.Collections.GenericIEnumerableVector3
3d polyline vertex list. - isClosed
- Type: SystemBoolean
Sets if the polyline is closed, by default it will create an open polyline.
See Also