TranslatePoint_Toward
Translates a point towards another point by a specified distance.
Syntax
C++
Python
def TranslatePoint_Toward( inPoint: Point2D, inTargetPoint: Point2D, inDistance: float, /, *, inInverse: bool = False ) -> outPoint: Point2D
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoint | Point2D | ||
![]() |
inTargetPoint | Point2D | Defines the direction of the translation | |
![]() |
inDistance | float | The distance between inPoint and outPoint | |
![]() |
inInverse | bool | False | Switches to the inverse operation |
![]() |
outPoint | Point2D |


