Circle.Rotate Method (Double, Double, Vector3d)

CircleRotate Method (Double, Double, Vector3d)

Rotates the circle around an axis that starts at the base plane origin.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public bool Rotate(
	double sinAngle,
	double cosAngle,
	Vector3d axis
)
Public Function Rotate ( 
	sinAngle As Double,
	cosAngle As Double,
	axis As Vector3d
) As Boolean

Parameters

sinAngle
Type: SystemDouble
The value returned by Math.Sin(angle) to compose the rotation.
cosAngle
Type: SystemDouble
The value returned by Math.Cos(angle) to compose the rotation.
axis
Type: Rhino.GeometryVector3d
A rotation axis.

Return Value

Type: Boolean
true on success, false on failure.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.14
See Also