Antiprism 0.23
|
Matrix transformations for 3D geometry. More...
Classes | |
class | mat3d |
Matrix for transformations in 3D. More... | |
Functions | |
vec3d | operator* (const mat3d &mat, const vec3d &v) |
Transform a column vector. | |
vec3d | operator* (const vec3d &v, const mat3d &mat) |
Transform a row vector. | |
mat3d | operator* (const mat3d &m1, const mat3d &m2) |
Multiply two matrices. | |
void | transform (vector< vec3d > &vecs, const mat3d &mat) |
Transform a set of vectors. |
Matrix transformations for 3D geometry.
Transform a column vector.
mat | the transformation matrix. |
v | the column vector. |
Transform a row vector.
v | the column vector. |
mat | the transformation matrix. |
Multiply two matrices.
m1 | the first matrix. |
m2 | the second matrix. |