QuaternionConcatenate(Quaternion, Quaternion, Quaternion) Method |
Creates a new
Quaternion that contains concatenation between two quaternion.
Namespace: CFX.Structures.GeometryAssembly: CFX (in CFX.dll) Version: 2.1.1+880255d2f7380f340f56b243a51d99f2136bdae3
Syntaxpublic static void Concatenate(
ref Quaternion value1,
ref Quaternion value2,
out Quaternion result
)
Public Shared Sub Concatenate (
ByRef value1 As Quaternion,
ByRef value2 As Quaternion,
<OutAttribute> ByRef result As Quaternion
)
Parameters
- value1 Quaternion
- The first Quaternion to concatenate.
- value2 Quaternion
- The second Quaternion to concatenate.
- result Quaternion
- The result of rotation of value1 followed by value2 rotation as an output parameter.
See Also