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


