diff options
Diffstat (limited to 'test/raycast.cpp')
-rw-r--r-- | test/raycast.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/raycast.cpp b/test/raycast.cpp index 672dc407..1793f5b6 100644 --- a/test/raycast.cpp +++ b/test/raycast.cpp @@ -1,8 +1,23 @@ #include "app.hpp" #include "src/raycast.hpp" +#include "src/world.hpp" namespace floormat { +namespace { + +#warning TODO! + +void test1() +{ + // try reproducing the evil bug in src/raycast.cpp:285: + // c = w.at({last_ch + Vector2i{i - 1, j - 1}}); + // was incorrectly: + // c = w.at({last_ch - Vector2i{i - 1, j - 1}}); +} + +} // namespace + void test_app::test_raycast() { |