Back to Aurora Vision Library website

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

ShiftPath


Header: AVL.h
Namespace: avl
Module: FoundationBasic

Moves every vertex of path along bisector of the angle between incident segments.

Syntax

C++
C#
 
void avl::ShiftPath
(
	const avl::Path& inPath,
	float inDistance,
	avl::ShiftDirection::Type inDirection,
	avl::Path& outPath
)

Parameters

Name Type Default Description
Input value inPath const Path& Input path
Input value inDistance float
Input value inDirection ShiftDirection::Type
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.