You are here: Start » FIL.NET » Function Reference » Geometry 2D » Geometry 2D Spatial Transforms » FIL.RotateCircle

FIL.RotateCircle

Rotates a circle clockwise around a center point.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void RotateCircle
(
	FilNet.Circle2D inCircle,
	FilNet.Point2D inCenter,
	float inAngle,
	bool inInverse,
	out FilNet.Circle2D outCircle
)

Parameters

Name Type Range Default Description
inCircleFilNet.Circle2D
inCenterFilNet.Point2DCenter of rotation.
inAnglefloatClockwise rotation angle.
inInverseboolSwitches to the inverse operation.
outCircleFilNet.Circle2D

Examples

RotateCircle performed on the sample circle, inCenter = (173.0, 163.0), inAngle = 180.0 and inInverse = False. The inCenter point is drawn on the first image in blue

See also