You are here: Start » FIL.NET » Invoke.PathTurnAngleMaximum_OrNil

Invoke.PathTurnAngleMaximum_OrNil

Finds the maximum of the profile of turn angles of a path; returns NIL if the path has no turn angles.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void PathTurnAngleMaximum_OrNil
(
	Fil.Path inPath,
	Fil.TurnAngleDirection inAllowedTurnDirection,
	Fil.TurnAnglePrecision inResultPrecision,
	Conditional<float> outMaximumTurnAngleIndex,
	Conditional<Fil.Point2D> outMaximumTurnAnglePoint,
	Conditional<float> outMaximumTurnAngleAngle
)

Parameters

Name Type Range Default Description
inPathFil.PathInput path.
inAllowedTurnDirectionFil.TurnAngleDirectionAllAllows to detect only left-turns, only right-turns or both. Default value: All.
inResultPrecisionFil.TurnAnglePrecisionSwitches between pixel-precise or subpixel-precise detection of the found maximum.
outMaximumTurnAngleIndexFtl.Conditional<float>Index of found maximum.
outMaximumTurnAnglePointFtl.Conditional<Fil.Point2D>Found point of a path with maximum turn angle.
outMaximumTurnAngleAngleFtl.Conditional<float>Maximal turn angle of the input path.

See also