56 lines
1.8 KiB
C++
56 lines
1.8 KiB
C++
/*
|
|
* 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/.
|
|
*
|
|
* Copyright 2018 Danny Robson <danny@nerdcruft.net>
|
|
*/
|
|
|
|
#include "iostream.hpp"
|
|
|
|
#include "sphere.hpp"
|
|
#include "plane.hpp"
|
|
#include "frustum.hpp"
|
|
#include "../coord/iostream.hpp"
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
template <size_t S, typename T>
|
|
std::ostream&
|
|
util::geom::operator<< (std::ostream &os, util::geom::sphere<S,T> s)
|
|
{
|
|
return os << "sphere(" << s.centre << ',' << s.radius << ')';
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
template std::ostream& util::geom::operator<< (std::ostream&, util::geom::sphere<2,float>);
|
|
template std::ostream& util::geom::operator<< (std::ostream&, util::geom::sphere<3,float>);
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
template <size_t S, typename T>
|
|
std::ostream&
|
|
util::geom::operator<< (std::ostream &os, plane<S,T> val)
|
|
{
|
|
return os << val.coefficients;
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
template std::ostream& util::geom::operator<< (std::ostream&, plane<2,float>);
|
|
template std::ostream& util::geom::operator<< (std::ostream&, plane<3,float>);
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
template <typename T>
|
|
std::ostream&
|
|
util::geom::operator<< (std::ostream &os, frustum<T> val)
|
|
{
|
|
return os << "[ " << util::make_infix (val.planes) << " ]";
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
template std::ostream& util::geom::operator<< (std::ostream&, frustum<float>);
|