libcruft-util/test/point.cpp

112 lines
2.8 KiB
C++
Raw Normal View History

2014-02-18 15:28:28 +11:00
#include "point.hpp"
#include "debug.hpp"
2015-04-13 16:45:56 +10:00
#include "tap.hpp"
2014-02-18 15:28:28 +11:00
#include "types.hpp"
2018-04-18 21:44:36 +10:00
#include "coord/iostream.hpp"
2014-02-18 15:28:28 +11:00
using namespace util;
2018-01-16 13:29:58 +11:00
///////////////////////////////////////////////////////////////////////////////
2014-02-18 15:28:28 +11:00
int
2015-07-13 16:29:01 +10:00
main (void)
{
util::TAP::logger tap;
2015-01-13 18:40:45 +11:00
// Redim to lower dimension
{
const point3f p { 0.f, 1.f, 2.f };
2015-01-13 18:40:45 +11:00
const point2f q = p.redim<2> ();
const point2f r { 0.f, 1.f };
2014-02-18 15:28:28 +11:00
tap.expect_eq (q, r, "redim to lower dimension");
2015-01-13 18:40:45 +11:00
}
// Redim to higher dimension without fill
{
const point2f p(0.f, 1.f);
const point2f q = p.redim<2> ();
2015-01-13 18:40:45 +11:00
// GCC: we can't use the equality operator here because it triggers
// an ICE on GCC 7.1.0
2015-07-13 16:29:01 +10:00
tap.expect (
std::equal (std::cbegin (p), std::cend (p), std::cbegin (q)),
2015-07-13 16:29:01 +10:00
"redim to higher dimension"
);
2015-01-13 18:40:45 +11:00
}
// Redim to higher dimension with fill
//
// HACK: This fails under GCC-7.1.0, and i'm not wasting any more time
// reducing this test case. it's _really_ template heavy.
2015-01-13 18:40:45 +11:00
{
static const point4f FILL (1.f, 2.f, 3.f, 4.f);
const point2f p (0.1f, 1.f);
2015-01-13 18:40:45 +11:00
const point4f q = p.template redim<4> (FILL);
2015-07-13 16:29:01 +10:00
tap.expect (
almost_equal (q[0], p[0]) &&
almost_equal (q[1], p[1]) &&
almost_equal (q[2], FILL[2]) &&
almost_equal (q[3], FILL[3]),
"redim to higher with fill"
);
2015-01-13 18:40:45 +11:00
}
2015-02-19 13:19:27 +11:00
// Simple linking check for coord type casting. Relies on truncation.
{
const point2f pf (0.5f, 0.2f);
const point2u pu (0, 0);
2015-07-13 16:29:01 +10:00
tap.expect_eq (pf.template cast<point2u::value_type> (), pu, "type cast with truncation");
}
// redim to 4-dimension homogenous coords
2015-02-19 13:19:27 +11:00
{
const point3f p (3, 4, 5);
const point4f q = p.homog ();
2015-02-19 13:19:27 +11:00
2015-07-13 16:29:01 +10:00
tap.expect (
equal (q.x, 3.f) &&
equal (q.y, 4.f) &&
equal (q.z, 5.f) &&
equal (q.w, 1.f),
2015-07-13 16:29:01 +10:00
"homogenous redim"
);
2015-02-19 13:19:27 +11:00
}
2015-04-13 16:45:56 +10:00
// trivial checks for distance metrics
{
const point2f a (1, 2);
const point2f b (9, 5);
2015-07-13 16:29:01 +10:00
tap.expect_eq (distance2 (a, b), 73.f, "distance2");
tap.expect_eq (distance (a, b), std::sqrt (73.f), "distance");
tap.expect_eq (manhattan (a, b), 11.f, "manhattan");
tap.expect_eq (chebyshev (a, b), 8.f, "chebyshev");
}
2018-04-18 21:44:36 +10:00
// test furthest point calculation
{
util::point2f const cloud[] = {
{ 0, 0},
{-1, 2},
{ 9,-3},
{ 6, 1},
};
auto const i = 1, j = 2;
auto const [a,b] = furthest (util::view{cloud});
tap.expect ((a == cloud[i] && b == cloud[j]) ||
(b == cloud[i] && a == cloud[j]),
"furthest point test");
};
2015-07-13 16:29:01 +10:00
return tap.status ();
2014-02-18 15:28:28 +11:00
}