diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-02-24 00:10:27 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2024-02-24 00:10:27 +0000 |
commit | 80529930ea3bc874c8da22c66343745ff6fdd45b (patch) | |
tree | 6441b090f24cf33638c5257e6b9eea4f14929503 /test | |
parent | Merge branch 'glcontainer-fix' (diff) | |
download | ilt-80529930ea3bc874c8da22c66343745ff6fdd45b.tar.bz2 ilt-80529930ea3bc874c8da22c66343745ff6fdd45b.tar.xz ilt-80529930ea3bc874c8da22c66343745ff6fdd45b.zip |
Simplify vector addition/subtraction with differnt types
Automatically applies correct rounding with float to int operations, adjusts test
expectations accordingly.
Diffstat (limited to 'test')
-rw-r--r-- | test/test-geoData.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test-geoData.cpp b/test/test-geoData.cpp index efe845c..302cab7 100644 --- a/test/test-geoData.cpp +++ b/test/test-geoData.cpp @@ -109,8 +109,8 @@ using FindRayIntersectData = std::tuple<GlobalPosition3D, Direction3D, GlobalPos BOOST_DATA_TEST_CASE(findRayIntersect, boost::unit_test::data::make<FindRayIntersectData>({ - {{310000000, 490000000, 50000}, {1, 1, -2}, {310008582, 490008582, 32834}}, - {{310000000, 490000000, 50000}, {1, 1, -1}, {310017131, 490017131, 32868}}, + {{310000000, 490000000, 50000}, {1, 1, -2}, {310008583, 490008583, 32834}}, + {{310000000, 490000000, 50000}, {1, 1, -1}, {310017131, 490017131, 32869}}, }), p, d, i) { |