nn::math::QUATMult Function

Syntax

NN_FORCE_INLINE QUAT * QUATMult(
     QUAT * pOut,
     const QUAT *__restrict q1,
     const QUAT *__restrict q2
);

Arguments

Name Description
out pOut Pointer to the buffer that receives the result of the calculation. It is not a problem if this points to the same quaternion as q1 and/or q2.
in q1 Pointer to the left-hand value.
in q2 Pointer to the right-hand value.

Return Values

Returns pOut.

Description

Calculates the product of two quaternions.


CONFIDENTIAL