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"
|
|
|
|
|
|
|
|
using namespace util;
|
|
|
|
|
|
|
|
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);
|
|
|
|
const point2f q = p.redim<2> ();
|
2014-02-18 15:28:28 +11:00
|
|
|
|
2015-07-13 16:29:01 +10:00
|
|
|
tap.expect (
|
|
|
|
almost_equal (q[0], p[0]) &&
|
|
|
|
almost_equal (q[1], p[1]),
|
|
|
|
"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 point3f q = p.redim<3> ();
|
|
|
|
|
2015-07-13 16:29:01 +10:00
|
|
|
tap.expect (
|
|
|
|
almost_equal (p[0], q[0]) &&
|
|
|
|
almost_equal (p[1], q[1]),
|
|
|
|
"redim to higher dimension"
|
|
|
|
);
|
2015-01-13 18:40:45 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
// Redim to higher dimension with fill
|
|
|
|
{
|
|
|
|
static const point4f FILL (1.f, 2.f, 3.f, 4.f);
|
2015-02-03 02:21:58 +11:00
|
|
|
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
|
|
|
|
2015-04-09 17:58:47 +10: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");
|
2015-04-09 17:58:47 +10:00
|
|
|
}
|
|
|
|
|
2015-06-01 15:29:24 +10:00
|
|
|
// redim to 4-dimension homogenous coords
|
2015-02-19 13:19:27 +11:00
|
|
|
{
|
|
|
|
const point2f p (3, 4);
|
|
|
|
const point4f q = p.homog<4> ();
|
|
|
|
|
2015-07-13 16:29:01 +10:00
|
|
|
tap.expect (
|
2015-11-13 17:10:10 +11:00
|
|
|
almost_equal (q.x, 3.f) &&
|
|
|
|
almost_equal (q.y, 4.f) &&
|
|
|
|
almost_equal (q.z, 0.f) &&
|
|
|
|
almost_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
|
|
|
|
2015-06-01 15:29:24 +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");
|
2015-06-01 15:29:24 +10:00
|
|
|
}
|
|
|
|
|
2015-07-13 16:29:01 +10:00
|
|
|
return tap.status ();
|
2014-02-18 15:28:28 +11:00
|
|
|
}
|