#include <nitro/fx/fx_mtx33.h>
void MTX_ScaleApply33(
const MtxFx33 * pSrc,
MtxFx33 * pDst,
fx32 x,
fx32 y,
fx32 z
);
pSrc | The pointer to a 3x3 matrix. |
pDst |
The pointer to a 3x3 matrix. |
x | The scale factor along the x-axis. |
y | The scale factor along the y-axis. |
z | The scale factor along the z-axis. |
None.
*This function premultiplies pSrc
by the scale matrix and stores the result in pDst
. pSrc
and pDst
can be pointers to the same matrix.
01/19/2004 Initial version