MTX_MultVec33

C Specification

#include <nitro/fx/fx_mtx33.h>

void MTX_MultVec33(const VecFx32* vec, const MtxFx33* m, VecFx32* dst);

Arguments

vec The pointer to a vector.
m   The pointer to a 3x3 matrix.
dst The pointer to a vector.

Return Values

None.

Description

*This function premultiplies *m by *vec and stores the result in *dst. vec and dst can be pointers to the same vector.

See Also

MtxFx33, fx32

Revision History

01/19/2004 Initial version.