Back to Aurora Vision Library Lite website
You are here: Start » Geometry 2D » Geometry 2D Spatial Transforms » RotatePointArray
RotatePointArray
Header: | AVL.h |
---|---|
Namespace: | avl |
Rotates an array of points clockwise around a center point.
Syntax
void avl::RotatePointArray ( const atl::Array<avl::Point2D>& inPoints, atl::Optional<const avl::Point2D&> inCenter, float inAngle, bool inInverse, atl::Array<avl::Point2D>& outPoints )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
inPoints | const Array<Point2D>& | |||
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 | ||
outPoints | Array<Point2D>& |
In-place Processing
This function supports in-place data processing - you can pass the same reference to inPoints and outPoints
Read more about In-place Computation.