Back to FabImage Library website
You are here: Start » Function Reference » Geometry 2D » Geometry 2D Spatial Transforms » RotatePoint
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Rotates a point clockwise around a center point.
Syntax
C++
C#
void fil::RotatePoint ( const fil::Point2D& inPoint, const fil::Point2D& inCenter, float inAngle, bool inInverse, fil::Point2D& outPoint )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inPoint | const Point2D& | ||
![]() |
inCenter | const Point2D& | Center of rotation | |
![]() |
inAngle | float | Clockwise rotation angle | |
![]() |
inInverse | bool | Switches to the inverse operation | |
![]() |
outPoint | Point2D& |
In-place Processing
This function supports in-place data processing - you can pass the same reference to inPoint and outPoint, inCenter and outPoint
Read more about In-place Computation.
Examples
![]() |
![]() |
RotatePoint performed on the sample point, inCenter = (136.0, 135.0), inAngle = 180.0 and inInverse = False. The inCenter point is drawn on the first image in blue.