Quaternion.Rotation Method (Double, Vector3d)

QuaternionRotation Method (Double, Vector3d)

Returns the unit quaternion cos(angle/2), sin(angle/2)*x, sin(angle/2)*y, sin(angle/2)*z where (x,y,z) is the unit vector parallel to axis. This is the unit quaternion that represents the rotation of angle about axis.

Namespace:  Rhino.Geometry
Assembly:  RhinoCommon (in RhinoCommon.dll)
Syntax
public static Quaternion Rotation(
	double angle,
	Vector3d axisOfRotation
)
Public Shared Function Rotation ( 
	angle As Double,
	axisOfRotation As Vector3d
) As Quaternion

Parameters

angle
Type: SystemDouble
An angle in radians.
axisOfRotation
Type: Rhino.GeometryVector3d
The axis of rotation.

Return Value

Type: Quaternion
A new quaternion.
Version Information

Rhino for Mac

Supported in: 5.4

Rhino for Windows

Supported in: 6.8
See Also