libcruft-util/geom/ray.cpp

73 lines
2.1 KiB
C++
Raw Normal View History

2015-02-19 13:28:56 +11:00
/*
2015-04-13 18:05:28 +10:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
2015-02-19 13:28:56 +11:00
*
2015-04-13 18:05:28 +10:00
* http://www.apache.org/licenses/LICENSE-2.0
2015-02-19 13:28:56 +11:00
*
2015-04-13 18:05:28 +10:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
2015-02-19 13:28:56 +11:00
*
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
*/
#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
}
2018-04-16 14:36:39 +10:00
///////////////////////////////////////////////////////////////////////////////
util::geom::ray3f
util::geom::operator* (util::matrix4f lhs, ray3f rhs)
{
return {
(lhs * rhs.origin.homog<4> ()).redim<3> (),
(lhs * rhs.direction.homog<4> ()).redim<3> ()
};
}
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 << ')';
}
template std::ostream& util::geom::operator<< (std::ostream&, ray<3,float>);
template std::ostream& util::geom::operator<< (std::ostream&, ray<3,double>);
2015-04-15 18:00:45 +10:00
2015-04-15 14:25:35 +10:00
///////////////////////////////////////////////////////////////////////////////
template struct util::geom::ray<2,float>;
template struct util::geom::ray<3,float>;