]> git.tdb.fi Git - libs/math.git/blobdiff - source/linal/matrix4.h
Beginnings of a geometry library
[libs/math.git] / source / linal / matrix4.h
diff --git a/source/linal/matrix4.h b/source/linal/matrix4.h
deleted file mode 100644 (file)
index 8b89a65..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-#ifndef MSP_LINAL_MATRIX4_H_
-#define MSP_LINAL_MATRIX4_H_
-
-#include "squarematrix.h"
-
-namespace Msp {
-namespace LinAl {
-
-/**
-A 4x4 square matrix, capable of expressing affine transformations in a
-three-dimensional vector space.
-*/
-template<typename T>
-class Matrix4: public SquareMatrix<T, 4>
-{
-};
-
-} // namespace LinAl
-} // namespace Msp
-
-#endif