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