LineThroughPoint3D
Computes a line in 3D passing through a point with given direction.
Syntax
C++
C#
Python
def LineThroughPoint3D(
inPoint3D: Point3D,
inDirectionVector: Vector3D,
/
)
-> outLine3D: Line3D
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoint3D | Point3D | A point on the created line | |
![]() |
inDirectionVector | Vector3D | Desired direction of the line | |
![]() |
outLine3D | Line3D | The resulting line in 3D |


