MTX_Concat44


C Specification

#include <nitro/fx/fx_mtx44.h>

void MTX_Concat44(
    const MtxFx44* a, 
    const MtxFx44* b, 
          MtxFx44* ab );
    

Description

This function multiplies the 4x4 matrix *a from the right by *b and stores the result in *ab. a, b, and ab can all be pointers to the same matrix.

Arguments

a   Pointer to a 4x4 matrix
b   Pointer to a 4x4 matrix
ab   Pointer to a 4x4 matrix

Return Values

None.

See Also

MtxFx44, fx32

Revision History

10/19/2004 Corrected #include statement.
01/19/2004 Initial version.