#include "kernel/system.h"
#include "kernel/vector2.h"
#include "kernel/vector3.h"
#include <memory.h>
Classes | |
| class | matrix33 |
Defines | |
| #define | n_swap(x, y) { float t=x; x=y; y=t; } |
Functions | |
| static matrix33 | operator * (const matrix33 &m0, const matrix33 &m1) |
| static vector3 | operator * (const matrix33 &m, const vector3 &v) |
Variables | |
| static float | matrix33_ident [9] |
| #define n_swap | ( | x, | |||
| y | ) | { float t=x; x=y; y=t; } |
Rightplace vector multiply.
Inplace matrix multiply.
float matrix33_ident[9] [static] |
Initial value:
{
1.0f, 0.0f, 0.0f,
0.0f, 1.0f, 0.0f,
0.0f, 0.0f, 1.0f,
}
1.5.3