Projects a point onto a line.
Syntax
C++
C#
Python
def ProjectPointOnLine(
inPoint: Point2D,
inLine: Line2D,
/
)
-> (
outProjectionPoint: Point2D,
outSignedDistance: float
)
Parameters
|
Name |
Type |
Default |
Description |
 |
inPoint |
Point2D |
|
|
 |
inLine |
Line2D |
|
|
 |
outProjectionPoint |
Point2D |
|
|
 |
outSignedDistance |
float |
|
|