nn::math::MTX44Mult Function

Syntax

NN_FORCE_INLINE MTX44 * MTX44Mult(
     MTX44 * pOut,
     const MTX44 * p,
     f32 f
);

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 p.
in p Pointer to the original matrix.
in f Number to multiply.

Return Values

Returns pOut.

Description

Calculates the scalar product of a matrix.


CONFIDENTIAL