libcruft-util/geom/ray.cpp

70 lines
1.9 KiB
C++
Raw Normal View History

2015-02-19 13:28:56 +11:00
/*
2018-08-04 15:14:06 +10:00
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
2015-02-19 13:28:56 +11:00
*
2018-04-16 15:56:37 +10:00
* Copyright 2015-2018 Danny Robson <danny@nerdcruft.net>
2015-02-19 13:28:56 +11:00
*/
#include "ray.hpp"
#include "iostream.hpp"
#include "ops.hpp"
#include "../coord/iostream.hpp"
#include "../debug.hpp"
2015-02-19 13:28:56 +11:00
using util::geom::ray;
2015-04-15 18:00:37 +10:00
2015-02-19 13:28:56 +11:00
2015-04-15 14:25:35 +10:00
///////////////////////////////////////////////////////////////////////////////
2015-03-11 22:31:35 +11:00
/// returns the closest parameter along the ray to a given point
template <size_t S, typename T>
T
2015-04-15 18:00:37 +10:00
ray<S,T>::closest (point<S,T> q) const
{
// project the origin-point difference onto the direction
2015-04-15 14:25:35 +10:00
return dot (origin - q, direction);
2015-02-19 13:28:56 +11:00
}
//-----------------------------------------------------------------------------
template <size_t S, typename T>
util::point<S,T>
2015-04-15 18:00:37 +10:00
ray<S,T>::at (T t) const
2015-02-19 13:28:56 +11:00
{
2015-04-15 14:25:35 +10:00
return origin + direction * t;
2015-02-19 13:28:56 +11:00
}
2015-04-15 18:00:45 +10:00
///////////////////////////////////////////////////////////////////////////////
template <size_t S, typename T>
std::ostream&
util::geom::operator<< (std::ostream &os, ray<S,T> r)
2015-04-15 18:00:45 +10:00
{
return os << "ray(" << r.origin << ',' << r.direction << ')';
}
2018-04-16 15:56:37 +10:00
///////////////////////////////////////////////////////////////////////////////
template <size_t S, typename T>
struct util::debug::validator<ray<S,T>> {
static bool
is_valid (ray<S,T> const& val)
{
return util::debug::is_valid (val.origin) &&
util::debug::is_valid (val.direction) &&
is_normalised (val.direction);
}
};
2015-04-15 18:00:45 +10:00
2015-04-15 14:25:35 +10:00
///////////////////////////////////////////////////////////////////////////////
2018-04-16 15:56:37 +10:00
#define INSTANTIATE_S_T(S,T) \
template std::ostream& util::geom::operator<< (std::ostream&, ray<S,T>); \
template struct util::debug::validator<ray<S,T>>; \
template struct util::geom::ray<S,T>;
INSTANTIATE_S_T(2,float)
INSTANTIATE_S_T(3,float)