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 | |
|---|---|---|---|---|
![]() |
inPaths | list[Path] | Input paths | |
![]() |
inFeature | PathFeature | PathFeature.BoundingBoxBottom | Path feature value to be computed |
![]() |
outPath | Path | Output path | |
![]() |
outValue | float | Computed feature value of the output path | |
![]() |
outIndex | int |


