Line Constructor (Vector2, Vector2)
|
Initializes a new instance of the Line class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public Line(
Vector2 startPoint,
Vector2 endPoint
)
Public Sub New (
startPoint As Vector2,
endPoint As Vector2
)
public:
Line(
Vector2 startPoint,
Vector2 endPoint
)
new :
startPoint : Vector2 *
endPoint : Vector2 -> Line
CONSTRUCTOR(
startPoint AS Vector2,
endPoint AS Vector2
)
Parameters
- startPoint
- Type: DXFReaderNETVector2
Line start point. - endPoint
- Type: DXFReaderNETVector2
Line end point.
See Also