Constructs a line segment whose start point is point and whose endpoint is point+vector. vector must not be a zero-length vector.
Public Sub New(
point As Point3d,
vector As Vector3d
)
public LineSegment3d(
Point3d point,
Vector3d vector
);
| Parameters | Description |
|---|---|
| Point3d point | Input start point of line segment |
| Vector3d vector | Input vector between endpoint and start point of line segment |