PointAlongPath
Transforms a point to a coordinate system in which the 'axis' path is vertical or horizontal.
Applications:Usually used to revert an ImageAlongPath transformation.
Syntax
C++
Python
def PointAlongPath( inPoint: Point2D, inAxis: Path, /, *, inAxisType: Axis = Axis.Y, inAxisCoordinate: float = 0.0, inInverse: bool = True ) -> outPoint: Point2D
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPoint | Point2D | Input point | |
![]() |
inAxis | Path | Input axis path | |
![]() |
inAxisType | Axis | Axis.Y | Type of axis the input axis path is parallel to |
![]() |
inAxisCoordinate | float | 0.0 | Coordinate of the axis path |
![]() |
inInverse | bool | True | Switches to the inverse operation |
![]() |
outPoint | Point2D | Transformed point |


