Back to Adaptive Vision Library website

You are here: Start » Function Reference » Geometry 2D Spatial Transforms » RotateRectangle

RotateRectangle


Rotates a rectangle clockwise around a center point.

Syntax

C++
C#
 
void avl::RotateRectangle
(
	const avl::Rectangle2D& inRectangle,
	atl::Optional<const avl::Point2D&> inCenter,
	float inAngle,
	bool inInverse,
	avl::Rectangle2D& outRectangle
)

Parameters

Name Type Default Description
inRectangle const Rectangle2D&
inCenter Optional<const Point2D&> NIL Center of rotation (the rectangle's point by default)
inAngle float Clockwise rotation angle
inInverse bool Switches to the inverse operation
outRectangle Rectangle2D&

Examples

RotateRectangle performed on the sample rectangle, inCenter = Auto, inAngle = 40.0 and inInverse = False.