guMtxCatF.3p 588 Bytes
.TH guMtxCatF 3P local "Silicon Graphics, Inc."
.SH NAME
.upperok
guMtxCatF \- concatenate two 4x4 floating point matrices.
.SH C SPECIFICATION
.nf
\f3#include "gu.h"

void guMtxCatF(float mf[4][4], float nf[4][4], float resf[4][4])

\fP
.fi
.SH PARAMETERS
.TP 10
.I mf
first 4x4 matrix.
.TP 10
.I nf
second 4x4 matrix.
.TP 10
.I resf
resulting 4x4 matrix,
.I mf*nf.

.SH DESCRIPTION
This function is useful for matrix processing on the host CPU. It
performs a 4x4 matrix multiplication of two matrices.
.PP
The result is allowed to be one of the inputs.

.SH SEE ALSO
.IR guMtxCatL (3P)