#include <math.h>
#include <string.h>
#include <stdio.h>
#include "Matrix4.h"
#include "utilities.h"
Go to the source code of this file.
Defines | |
#define | MATSWAP(a, b) {temp=(a);(a)=(b);(b)=temp;} |
Functions | |
void | trans_from_rotate (const float mat3[9], Matrix4 *mat4) |
Transform 3x3 into 4x4 matrix:. More... | |
void | print_Matrix4 (const Matrix4 *mat4) |
Print formatted matrix. More... |
|
Definition at line 135 of file Matrix4.C. Referenced by Matrix4::inverse. |
|
Print formatted matrix.
Definition at line 407 of file Matrix4.C. References Matrix4::mat. |
|
Transform 3x3 into 4x4 matrix:.
Definition at line 397 of file Matrix4.C. References Matrix4::mat. |