Back to Aurora Vision Library website

You are here: Start » Function Reference » Path » Path Features » PathTurnAngleProfile

PathTurnAngleProfile


Header: AVL.h
Namespace: avl
Module: FoundationPro

Computes the profile of turn angles at characteristic points of a path.

Syntax

C++
C#
 
void avl::PathTurnAngleProfile
(
	const avl::Path& inPath,
	avl::Profile& outTurnAngleProfile
)

Parameters

Name Type Default Description
Input value inPath const Path& Input path
Output value outTurnAngleProfile Profile&

Description

The operation iterates over the characteristic points of the inPath and computes the absolute value of path turn angle at each one. The resulting outTurnAngleProfile profile consists of the angles computed at consecutive points of the path.

Examples

PathTurnAngleProfile run on the sample path

Errors

List of possible exceptions:

Error type Description
DomainError Input path contains a pair of equal consecutive points in PathTurnAngleProfile.

See Also