MLine Constructor (IEnumerableVector2, Double, Boolean)
|
Initializes a new instance of the MLine class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public MLine(
IEnumerable<Vector2> vertexes,
double scale,
bool isClosed
)
Public Sub New (
vertexes As IEnumerable(Of Vector2),
scale As Double,
isClosed As Boolean
)
public:
MLine(
IEnumerable<Vector2>^ vertexes,
double scale,
bool isClosed
)
new :
vertexes : IEnumerable<Vector2> *
scale : float *
isClosed : bool -> MLine
CONSTRUCTOR(
vertexes AS IEnumerable<Vector2>,
scale AS REAL8,
isClosed AS LOGIC
)
Parameters
- vertexes
- Type: System.Collections.GenericIEnumerableVector2
Multiline vertex location list in object coordinates. - scale
- Type: SystemDouble
Multiline scale. - isClosed
- Type: SystemBoolean
Sets if the multiline is closed (default: false).
See Also