nn::math::MTX44MultArray Function

Syntax

NN_MATH_INLINE MTX44 * MTX44MultArray(
     MTX44 * pOut,
     const MTX44 * p1,
     const MTX44 * pSrc,
     s32 count
);

Parameters

Name Description
out pOut Pointer to the start of the array that receives the result of the calculation.
in p1 Pointer to the matrix that is taken as the left-hand value.
in pSrc Pointer to the start of the array of matrices that is taken as the right-hand value.
in count The number of elements in the array of matrices used as right-hand values.

Return Values

Returns pOut.

Description

Premultiplies an array of matrices by another matrix.


CONFIDENTIAL