FindLongestSubpath
Creates a new path from the longest sequence of segments of the input path that turn gently.
Applications:Can be used for removing noise.
Syntax
C++
C#
Python
def FindLongestSubpath( inPath: Path, inMaxTurnAngle: float, outPath: Path, / ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inPath | Path | Input path, possibly noised | ||
![]() |
inMaxTurnAngle | float | 0.0 - 180.0 | Maximum angle between two consecutive segments in the output path | |
![]() |
outPath | Path | Output path |


