libcruft-util/test/geom/aabb.cpp

16 lines
172 B
C++
Raw Normal View History

#include "geom/aabb.hpp"
2015-04-09 14:05:01 +10:00
2015-04-13 16:45:56 +10:00
#include "tap.hpp"
#include <tuple>
2017-08-24 16:43:54 +10:00
using util::geom::aabb2f;
2015-04-13 16:45:56 +10:00
2015-04-09 14:05:01 +10:00
int
main (int, char**)
{
2015-04-13 16:45:56 +10:00
util::TAP::logger tap;
return tap.status ();
2015-04-09 14:05:01 +10:00
}