Transposes arbitrary matrix m. When parameter m is NULL, the current matrix is transposed.
EXAMPLE
The following transposes the current matrix.
NJS_MATRIX stack[10];
NJS_VIEW view;
njInitMatrix(stack, 10);
njInitView(&view);
njSetView(&view);
njClearMatrix();
njPushMatrix(NULL);
njTransposeMatrix(NULL);
njPopMatrix(1);