Back to FabImage Library website
You are here: Start » Function Reference » Path » Path Spatial Transforms » RotatePathArray
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Rotates an array of paths clockwise around a center point.
Syntax
C++
C#
void fil::RotatePathArray ( const ftl::Array<fil::Path>& inPaths, ftl::Optional<const fil::Point2D&> inCenter, float inAngle, bool inInverse, ftl::Array<fil::Path>& outPaths )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inPaths | const Array<Path>& | ||
![]() |
inCenter | Optional<const Point2D&> | NIL | Center of rotation (the mass center by default) |
![]() |
inAngle | float | Clockwise rotation angle | |
![]() |
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
Read more about In-place Computation.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Center of rotation cannot be computed in RotatePathArray. |