PathAlongArc


Transforms a path to a coordinate system in which the 'axis' arc is vertical or horizontal.

Applications:Usually used to revert an ImageAlongArc transformation.

Syntax

C++
C#
Python
 
def PathAlongArc(
	inPath: Path,
	inAxis: Arc2D,
	outPath: Path,
	/,
	*,
	inAxisType: Axis = Axis.Y,
	inAxisCoordinate: float = 0.0,
	inInverse: bool = True
)
-> None

Parameters

Name Type Default Description
Input value inPath Path Input path
Input value inAxis Arc2D Input axis arc
Input value inAxisType Axis Axis.Y Type of axis the input axis arc is parallel to
Input value inAxisCoordinate float 0.0 Coordinate of the axis arc
Input value inInverse bool True Switches to the inverse operation
Output value outPath Path Transformed path