Constructs an unbounded line that passes through pnt and has a direction of vec. vec must not be a zero-length vector.
Public Sub New(
point As Point3d,
vector As Vector3d
)
public Line3d(
Point3d point,
Vector3d vector
);
| Parameters | Description |
|---|---|
| Point3d point | Input any 3D point |
| Vector3d vector | Input any 3D vector |