Back to Aurora Vision Library Lite website

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

TransposePath


Header: AVL.h
Namespace: avl

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

Syntax

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.