]> git.tdb.fi Git - libs/math.git/blob - source/linal/matrix4.h
Rename the library to mspmath and make linal a sublibrary
[libs/math.git] / source / linal / matrix4.h
1 #ifndef MSP_LINAL_MATRIX4_H_
2 #define MSP_LINAL_MATRIX4_H_
3
4 #include "squarematrix.h"
5
6 namespace Msp {
7 namespace LinAl {
8
9 /**
10 A 4x4 square matrix, capable of expressing affine transformations in a
11 three-dimensional vector space.
12 */
13 template<typename T>
14 class Matrix4: public SquareMatrix<T, 4>
15 {
16 };
17
18 } // namespace LinAl
19 } // namespace Msp
20
21 #endif