Back to Adaptive Vision Library website

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

RescalePathArray


Translates each point of each path proportionally to its distance to a reference point.

Syntax

C++
C#
 
void avl::RescalePathArray
(
	const atl::Array<avl::Path>& inPaths,
	atl::Optional<const avl::Point2D&> inReferencePoint,
	float inScale,
	bool inInverse,
	atl::Array<avl::Path>& outPaths
)

Parameters

Name Type Default Description
inPaths const Array<Path>&
inReferencePoint Optional<const Point2D&> NIL The point to which all distances change linearly (the mass center by default)
inScale float 1.0f Scaling factor
inInverse bool Switches to the inverse operation
outPaths Array<Path>&

In-place Processing

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