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