2015-09-21 15:27:36 +10:00
|
|
|
#include "tap.hpp"
|
|
|
|
#include "point.hpp"
|
2016-08-11 14:58:46 +10:00
|
|
|
#include "vector.hpp"
|
2015-09-21 15:27:36 +10:00
|
|
|
|
2016-03-14 22:32:52 +11:00
|
|
|
#include "coord/iostream.hpp"
|
|
|
|
|
2015-09-21 15:27:36 +10:00
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
|
|
|
static_assert (sizeof (util::point1u) == 1 * sizeof (util::point1u::value_type), "point1u is not packed");
|
|
|
|
static_assert (sizeof (util::point2u) == 2 * sizeof (util::point2u::value_type), "point2u is not packed");
|
|
|
|
static_assert (sizeof (util::point3u) == 3 * sizeof (util::point3u::value_type), "point3u is not packed");
|
|
|
|
static_assert (sizeof (util::point4u) == 4 * sizeof (util::point4u::value_type), "point4u is not packed");
|
|
|
|
|
|
|
|
static_assert (sizeof (util::point1f) == 1 * sizeof (util::point1f::value_type), "point1f is not packed");
|
|
|
|
static_assert (sizeof (util::point2f) == 2 * sizeof (util::point2f::value_type), "point2f is not packed");
|
|
|
|
static_assert (sizeof (util::point3f) == 3 * sizeof (util::point3f::value_type), "point3f is not packed");
|
|
|
|
static_assert (sizeof (util::point4f) == 4 * sizeof (util::point4f::value_type), "point4f is not packed");
|
|
|
|
|
2017-05-22 13:55:21 +10:00
|
|
|
util::TAP::logger tap;
|
2016-03-14 22:32:52 +11:00
|
|
|
|
|
|
|
constexpr util::point2i p { -1, 2 };
|
|
|
|
|
2017-05-22 13:55:21 +10:00
|
|
|
tap.expect_eq (-p, util::point2i { 1, -2 }, "unary point negation");
|
|
|
|
tap.expect_eq ( p, p, "unary point addition");
|
|
|
|
tap.expect (
|
2016-03-14 22:32:52 +11:00
|
|
|
std::is_same<
|
|
|
|
bool,
|
|
|
|
decltype(!p)::value_type
|
|
|
|
>::value,
|
|
|
|
"unary point boolean negation has type bool"
|
|
|
|
);
|
2015-09-21 15:27:36 +10:00
|
|
|
|
2016-08-11 14:58:46 +10:00
|
|
|
auto vec = util::vector4f (0.5f);
|
2017-05-22 13:55:21 +10:00
|
|
|
tap.expect_eq (vec, util::normalised (vec), "normalisation of normalised vector");
|
2016-08-11 14:58:46 +10:00
|
|
|
|
2017-05-22 13:55:21 +10:00
|
|
|
tap.expect_eq (sum (util::vector4f::ones ()), 4.f, "elementwise summation");
|
2016-08-15 18:46:04 +10:00
|
|
|
|
2017-06-15 16:24:44 +10:00
|
|
|
// check that structured bindings work
|
|
|
|
{
|
|
|
|
const auto &[x,y] = p;
|
|
|
|
tap.expect (x == p.x && y == p.y, "structured bindings extract correct data");
|
|
|
|
}
|
|
|
|
|
2017-06-16 17:38:55 +10:00
|
|
|
{
|
|
|
|
util::point3f a { 103, 0, 14 };
|
|
|
|
util::point3f b { 104, INFINITY, 15 };
|
|
|
|
|
|
|
|
tap.expect_eq (
|
|
|
|
std::numeric_limits<float>::infinity (),
|
|
|
|
::util::distance (a, b),
|
|
|
|
"distance with an infinity is infinite"
|
|
|
|
);
|
|
|
|
}
|
2017-06-15 16:24:44 +10:00
|
|
|
|
2017-07-31 15:41:33 +10:00
|
|
|
{
|
|
|
|
const util::point3f a { -1, 2, 0 };
|
|
|
|
const util::point3f b { 1, 0, 2 };
|
|
|
|
|
|
|
|
const util::point3f lo { -1, 0, 0 };
|
|
|
|
const util::point3f hi { 1, 2, 2 };
|
|
|
|
|
|
|
|
tap.expect_eq (select (a < b, a, b), lo, "select with points and min");
|
|
|
|
tap.expect_eq (select (a > b, a, b), hi, "select with points and max");
|
|
|
|
};
|
|
|
|
|
2017-05-22 13:55:21 +10:00
|
|
|
return tap.status ();
|
2015-09-21 15:27:36 +10:00
|
|
|
}
|