diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-16 00:07:48 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-16 00:07:48 +0000 |
commit | b7fadd730a78671a0eaf55c36df24c04661ef2c3 (patch) | |
tree | a9d5bce62b3c6e42008d7e0f637665aa97b73764 /test/test-obj.cpp | |
parent | Don't write null value for pointers (diff) | |
download | ilt-b7fadd730a78671a0eaf55c36df24c04661ef2c3.tar.bz2 ilt-b7fadd730a78671a0eaf55c36df24c04661ef2c3.tar.xz ilt-b7fadd730a78671a0eaf55c36df24c04661ef2c3.zip |
Swap y,z axis
This was a pain... but all the coords make much more sense now and a lot of mystery negation has disappeared.
Diffstat (limited to 'test/test-obj.cpp')
-rw-r--r-- | test/test-obj.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-obj.cpp b/test/test-obj.cpp index 813a69c..c7bd6ce 100644 --- a/test/test-obj.cpp +++ b/test/test-obj.cpp @@ -34,6 +34,6 @@ BOOST_AUTO_TEST_CASE(create_meshes) const auto & o = ms.at("Body"); BOOST_REQUIRE_EQUAL(88, o.first.size()); const auto & v = o.first.front(); - BOOST_REQUIRE_CLOSE(1.345, v.pos.x, 1); + BOOST_REQUIRE_CLOSE(-1.345, v.pos.x, 1); BOOST_REQUIRE_EQUAL(138, o.second.size()); } |