Back to FabImage Library website
You are here: Start » Function Reference » Path » Path Spatial Transforms » AlignPathArray
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Moves an array of paths from a local coordinate system to the absolute one.
Applications: Required when there are paths defined in a local coordinate system, but the next image-related filter in the program does not have any inAlignment input.
Syntax
C++
C#
void fil::AlignPathArray ( const ftl::Array<fil::Path>& inPaths, const fil::CoordinateSystem2D& inAlignment, bool inInverse, ftl::Array<fil::Path>& outAlignedPaths )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inPaths | const Array<Path>& | ||
![]() |
inAlignment | const CoordinateSystem2D& | Coordinate system to align to | |
![]() |
inInverse | bool | Switches to the inverse transform | |
![]() |
outAlignedPaths | Array<Path>& |
In-place Processing
This function supports in-place data processing - you can pass the same reference to inPaths and outAlignedPaths
Read more about In-place Computation.