Public Sub New(
pointer1 As Point3d,
pointer2 As Point3d
)
public Line(
Point3d pointer1,
Point3d pointer2
);
| Parameters | Description |
|---|---|
| Point3d pointer1 | Input line start point (WCS coordinates) |
| Point3d pointer2 | Input line end point (WCS coordinates) |
This constructor initializes the line object to use pointer1 as the start point, and pointer2 as the endpoint. Both points must be in WCS coordinates.