2018-04-16 15:57:54 +10:00
|
|
|
#include "geom/aabb.hpp"
|
|
|
|
#include "geom/plane.hpp"
|
|
|
|
#include "geom/ray.hpp"
|
|
|
|
#include "geom/iostream.hpp"
|
|
|
|
#include "tap.hpp"
|
2015-02-19 13:28:56 +11:00
|
|
|
|
2015-10-13 18:19:47 +11:00
|
|
|
using util::geom::ray2f;
|
|
|
|
using util::geom::ray3f;
|
|
|
|
|
2015-03-07 03:20:50 +11:00
|
|
|
|
2015-04-13 21:47:37 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2015-03-07 03:20:50 +11:00
|
|
|
void
|
2015-04-13 21:47:37 +10:00
|
|
|
test_intersect_plane (util::TAP::logger &tap)
|
2015-02-19 13:28:56 +11:00
|
|
|
{
|
2015-03-11 22:31:35 +11:00
|
|
|
// trivial case: origin ray facing z, plane at unit z facing -z.
|
2018-04-16 15:57:54 +10:00
|
|
|
const util::geom::ray3f l { .origin = 0, .direction = {0, 0, 1} };
|
2017-08-22 15:46:49 +10:00
|
|
|
const util::geom::plane3f p (util::point3f {0,0,1}, util::vector3f {0,0,-1});
|
2015-02-19 13:28:56 +11:00
|
|
|
|
2018-03-13 23:27:37 +11:00
|
|
|
tap.expect_eq (distance (l, p), 1.f, "ray-plane intersect");
|
2015-02-19 13:28:56 +11:00
|
|
|
}
|
2015-03-07 03:20:50 +11:00
|
|
|
|
|
|
|
|
2015-04-13 21:47:37 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2015-03-07 03:20:50 +11:00
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
2015-04-13 16:45:56 +10:00
|
|
|
util::TAP::logger tap;
|
2015-04-13 21:47:37 +10:00
|
|
|
|
|
|
|
test_intersect_plane (tap);
|
|
|
|
|
|
|
|
return tap.status ();
|
2015-03-07 03:20:50 +11:00
|
|
|
}
|