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
Input value inPath Path Input path, possibly noised
Input value inMaxTurnAngle float 0.0 - 180.0 Maximum angle between two consecutive segments in the output path
Output value outPath Path Output path