GetMaximumPath


Returns the path from the input array that corresponds to the largest computed feature value.

Applications:Use this filter when you have an array of paths and you want to select one of them that best matches some criterion.

Syntax

C++
C#
Python
 
def GetMaximumPath(
	inPaths: list[Path],
	outPath: Path,
	/,
	*,
	inFeature: PathFeature = PathFeature.BoundingBoxBottom
)
-> (
	outValue: float,
	outIndex: int
)

Parameters

Name Type Default Description
Input value inPaths list[Path] Input paths
Input value inFeature PathFeature PathFeature.BoundingBoxBottom Path feature value to be computed
Output value outPath Path Output path
Output value outValue float Computed feature value of the output path
Output value outIndex int