Back to Aurora Vision Library website

You are here: Start » Function Reference » Geometry 3D » Geometry 3D Spatial Transforms » RotateCircle3D

RotateCircle3D


Header: AVL.h
Namespace: avl
Module: Vision3DLite

Rotates a circle in 3D around an axis in 3D.

Syntax

C++
C#
 
void avl::RotateCircle3D
(
	const avl::Circle3D& inCircle3D,
	const avl::Line3D& inAxis,
	float inAngle,
	bool inInverse,
	avl::Circle3D& outCircle3D
)

Parameters

Name Type Default Description
Input value inCircle3D const Circle3D&
Input value inAxis const Line3D& The rotation axis
Input value inAngle float Clockwise angle of rotation
Input value inInverse bool Switches to the inverse operation
Output value outCircle3D Circle3D&

In-place Processing

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

Read more about In-place Computation.

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite circle on input in RotateCircle3D.
DomainError Indefinite line on input in RotateCircle3D.