LineThroughPoints3D
Computes a line in 3D passing through two points.
Syntax
C++
C#
Python
def LineThroughPoints3D(
inPoint1: Point3D,
inPoint2: Point3D,
/
)
-> outLine3D: Line3D
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoint1 | Point3D | A point on the created line | |
![]() |
inPoint2 | Point3D | Another point on the created line | |
![]() |
outLine3D | Line3D | The resulting line in 3D |


