Separated project into src, doc and test directories.master
commit255d780018ee69f817f4c8c454b3baad451f008c
authorVitaly Budovski <vbudovski@gmail.com>
Thu, 5 Nov 2009 03:25:38 +0000 (5 14:25 +1100)
committerVitaly Budovski <vbudovski@gmail.com>
Thu, 5 Nov 2009 03:25:38 +0000 (5 14:25 +1100)
tree246335d718f4c5d360618f0152255d3f7163d775
parent5b012f7cb72025a05fdd3709787bf7fd05e9fdf4
Separated project into src, doc and test directories.
Added some documentation.
Used boost serialization library for scenes.
Created some initial unit tests using boost test library and CTest.
41 files changed:
CMakeLists.txt
boost/matrix.hpp [deleted file]
data/scenes/basic.scn [deleted file]
data/scenes/basic.xml [new file with mode: 0644]
data/scenes/basic2.scn [deleted file]
data/scenes/basic2.xml [new file with mode: 0644]
data/scenes/basic3.scn [deleted file]
data/scenes/basic3.xml [new file with mode: 0644]
doc/CMakeLists.txt [new file with mode: 0644]
doc/doxygen.conf.in [new file with mode: 0644]
physics/mesh.hpp [deleted file]
physics/state.hpp [deleted file]
sceneloader.hpp [deleted file]
src/CMakeLists.txt [new file with mode: 0644]
src/boost/invert_matrix.hpp [moved from boost/invert_matrix.hpp with 100% similarity]
src/boost/quaternion.hpp [moved from boost/quaternion.hpp with 74% similarity]
src/boost/vector.hpp [moved from boost/vector.hpp with 100% similarity]
src/main.cpp [moved from main.cpp with 93% similarity]
src/math/bracket.hpp [moved from math/bracket.hpp with 100% similarity]
src/math/brent.hpp [moved from math/brent.hpp with 100% similarity]
src/math/constants.hpp [moved from math/constants.hpp with 78% similarity]
src/math/euler.hpp [moved from math/euler.hpp with 75% similarity]
src/math/lemke.hpp [moved from math/lemke.hpp with 78% similarity]
src/math/powell.hpp [moved from math/powell.hpp with 100% similarity]
src/math/runge_kutta.hpp [moved from math/rungekutta.hpp with 71% similarity]
src/meshloader.hpp [moved from meshloader.hpp with 100% similarity]
src/objloader.hpp [moved from objloader.hpp with 100% similarity]
src/physics/box.hpp [moved from physics/box.hpp with 53% similarity]
src/physics/gjk.hpp [moved from physics/gjk.hpp with 84% similarity]
src/physics/mesh.hpp [new file with mode: 0644]
src/physics/rigid_body.hpp [moved from physics/rigidbody.hpp with 53% similarity]
src/physics/simplex.hpp [moved from physics/simplex.hpp with 100% similarity]
src/physics/sphere.hpp [moved from physics/sphere.hpp with 51% similarity]
src/physics/state.hpp [new file with mode: 0644]
src/util/equal_vector.hpp [moved from util/equal_vector.hpp with 100% similarity]
src/util/increment.hpp [moved from util/increment.hpp with 64% similarity]
src/util/less_length_squared.hpp [moved from util/less_length_squared.hpp with 51% similarity]
src/util/proximity_list.hpp [moved from util/proximity_list.hpp with 54% similarity]
src/world.hpp [moved from world.hpp with 77% similarity]
test/CMakeLists.txt [new file with mode: 0644]
test/proximity_list_test.cpp [new file with mode: 0644]