Back to FabImage Library website

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

ShiftPath


Header: FIL.h
Namespace: fil
Module: FoundationBasic

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

Syntax

C++
C#
 
void fil::ShiftPath
(
	const fil::Path& inPath,
	float inDistance,
	fil::ShiftDirection::Type inDirection,
	fil::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.