nn::math::MTX34MultTranslate Function

Syntax

NN_FORCE_INLINE MTX34 * MTX34MultTranslate(
     MTX34 * pOut,
     const MTX34 * pM,
     const VEC3 * pT
);

Parameters

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 matrix as pM.
in pM Pointer to the original matrix.
in pT Pointer to the vector that stores the amount of translation along the direction of each axis.

Return Values

Returns pOut.

Description

Translates a matrix. Postmultiplies the input matrix by the translation matrix.


CONFIDENTIAL