Back to FabImage Library website

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

RotateVector


Header: FIL.h
Namespace: fil
Module: FoundationLite

Rotates a vector clockwise.

Syntax

C++
C#
 
void fil::RotateVector
(
	const fil::Vector2D& inVector,
	float inAngle,
	bool inInverse,
	fil::Vector2D& outVector
)

Parameters

Name Type Default Description
Input value
inVector const Vector2D&
Input value
inAngle float Clockwise angle of rotation
Input value
inInverse bool Switches to the inverse operation
Output value
outVector Vector2D&

In-place Processing

This function supports in-place data processing - you can pass the same reference to inVector and outVector

Read more about In-place Computation.

Examples

RotateVector performed on the sample vector, inAngle = 135.0 and inInverse = False.