Back to Aurora Vision Library website

You are here: Start » Function Reference » Path » Path Spatial Transforms » TransposePath

TransposePath


Header: AVL.h
Namespace: avl
Module: FoundationLite

Flips and rotates a path so that x-coordinates are exchanged with y-coordinates.

Syntax

C++
C#
 
void avl::TransposePath
(
	const avl::Path& inPath,
	avl::Path& outPath
)

Parameters

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

In-place Processing

This function supports in-place data processing - you can pass the same reference to inPath and outPath

Read more about In-place Computation.