libcruft-util/test/aabb.cpp
2015-04-13 18:06:08 +10:00

50 lines
938 B
C++

#include "aabb.hpp"
#include "tap.hpp"
#include <tuple>
int
main (int, char**)
{
util::TAP::logger tap;
{
// Test contraction
util::AABB2f box {
{ 2, 2 },
{ 8, 8 }
};
box.contract (2.f);
tap.expect_eq<util::AABB2f, util::AABB2f> (box, { { 3, 3 }, { 7, 7 }}, "over contraction");
}
{
// Test expansion
util::AABB2f box {
{ 2, 2 },
{ 8, 8 }
};
box.expand (2.f);
tap.expect_eq<util::AABB2f, util::AABB2f> (box, { { 1, 1 }, { 9, 9 }}, "expansion");
}
{
// Ensure we don't wrap-around on unsigned position types when contracting
util::AABB2f small {
{ 0, 0 },
{ 1, 1 }
};
small.contract (10);
tap.expect_eq<util::AABB2f, util::AABB2f> (small, { { 0.5f, 0.5f }, { 0.5f, 0.5f }}, "unsigned over-contract");
}
}