High performance rotation of the point set.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public void Rotate(
	Point center,
	Matrix3d rotationMatrix
)
Visual Basic (Declaration)
Public Sub Rotate ( _
	center As Point, _
	rotationMatrix As Matrix3d _
)
Visual C++
public:
void Rotate(
	Point^ center, 
	Matrix3d^ rotationMatrix
)

Parameters

center
Type: ceometric.VectorGeometry..::.Point
The center of rotation.
rotationMatrix
Type: ceometric.VectorGeometry..::.Matrix3d
A rotation matrix.

Remarks

This method directly modifies the entries of the point set for performance reasons.

See Also