Click or drag to resize

QuaternionConcatenate Method

Concatenates two Quaternions; the result represents the value1 rotation followed by the value2 rotation.

Namespace:  Karamba.Geometry
Assembly:  KarambaCommon (in KarambaCommon.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static Quaternion Concatenate(
	Quaternion value1,
	Quaternion value2
)

Parameters

value1
Type: Karamba.GeometryQuaternion
The first Quaternion rotation in the series.
value2
Type: Karamba.GeometryQuaternion
The second Quaternion rotation in the series.

Return Value

Type: Quaternion
A new Quaternion representing the concatenation of the value1 rotation followed by the value2 rotation.
See Also