|
Vecmat 0.2.3
C math and linear algebra library for 2D/3D graphics, physics, and science.
|
#include <vecmat.h>
Data Fields | |
| union { | |
| struct { | |
| vm_float_t m11 | |
| vm_float_t m21 | |
| vm_float_t m12 | |
| vm_float_t m22 | |
| } | |
| vm_float_t v [VECMAT_MAT2_SIZE] | |
| }; | |
| union { ... } matrix2 |
| vm_float_t matrix2::m11 |
Definition at line 208 of file vecmat.h.
Referenced by mat2_mul_ptr(), and mat2_mul_vec2_ptr().
| vm_float_t matrix2::m12 |
Definition at line 210 of file vecmat.h.
Referenced by mat2_mul_ptr(), and mat2_mul_vec2_ptr().
| vm_float_t matrix2::m21 |
Definition at line 209 of file vecmat.h.
Referenced by mat2_mul_ptr(), and mat2_mul_vec2_ptr().
| vm_float_t matrix2::m22 |
Definition at line 211 of file vecmat.h.
Referenced by mat2_mul_ptr(), and mat2_mul_vec2_ptr().
| vm_float_t matrix2::v[VECMAT_MAT2_SIZE] |
Definition at line 213 of file vecmat.h.
Referenced by mat2_determinant(), mat2_eq(), mat2_identity_ptr(), mat2_inverse_ptr(), and mat2_transpose_ptr().