- added prototype of Matrix class template (we still need it, because quaternions...
authorAkiko <akiko@linux-addicted.net>
Mon, 21 Oct 2013 15:52:46 +0000 (17:52 +0200)
committerAkiko <akiko@linux-addicted.net>
Mon, 21 Oct 2013 15:52:46 +0000 (17:52 +0200)
commit2834fad4ee326e0ff33d8fe15f860f3321eb1f5e
treeda6bb3a47ae6c1ab6daafae3baf3cbd4c479a43f
parent751b5973f688e39e4217fcb60ca6d6fe139d4de0
- added prototype of Matrix class template (we still need it, because quaternions can do rotations only)
- added abstract Object class template, the base for every 3D object that will follow
- added test stumps for vectors, matrices and quaternions (just to push them through the compiler while building)
- updated the makefiles to handle the new files
engine/Matrix.hxx [new file with mode: 0644]
engine/Object.hxx [new file with mode: 0644]
tests/CMakeLists.txt
tests/test_matrix.cxx [new file with mode: 0644]
tests/test_quaternion.cxx [new file with mode: 0644]
tests/test_vectors.cxx [new file with mode: 0644]