153 lines
4.5 KiB
C++
153 lines
4.5 KiB
C++
/*
|
|
* This file is part of libgim.
|
|
*
|
|
* libgim is free software: you can redistribute it and/or modify it under the
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
* Foundation, either version 3 of the License, or (at your option) any later
|
|
* version.
|
|
*
|
|
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Copyright 2010-2015 Danny Robson <danny@nerdcruft.net>
|
|
*/
|
|
|
|
#include "extent.hpp"
|
|
|
|
#include "debug.hpp"
|
|
#include "maths.hpp"
|
|
|
|
#include <cmath>
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
template <size_t S, typename T>
|
|
util::extent<S,T>::extent (vector<S,T> _v)
|
|
{
|
|
std::copy (std::begin (_v.data),
|
|
std::end (_v.data),
|
|
std::begin (this->data));
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
template <size_t S, typename T>
|
|
T
|
|
util::extent<S,T>::diameter (void) const
|
|
{
|
|
return static_cast<T> (
|
|
std::sqrt (
|
|
std::accumulate (std::begin (this->data),
|
|
std::end (this->data),
|
|
T {0},
|
|
[] (auto a, auto b) { return a + b * b; })
|
|
)
|
|
);
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
template <size_t S, typename T>
|
|
T
|
|
util::extent<S,T>::area (void) const
|
|
{
|
|
return std::accumulate (std::begin (this->data),
|
|
std::end (this->data),
|
|
T {1},
|
|
std::multiplies<T> ());
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
template <size_t S, typename T>
|
|
util::extent<S,T>
|
|
util::extent<S,T>::expanded (util::vector<S,T> mag) const
|
|
{
|
|
return *this + mag;
|
|
}
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
template <size_t S, typename T>
|
|
util::extent<S,T>
|
|
util::extent<S,T>::expanded (T t) const
|
|
{
|
|
return expanded (util::vector<S,T> {t});
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
template <size_t S, typename T>
|
|
bool
|
|
util::extent<S,T>::empty (void) const
|
|
{
|
|
return almost_equal (area(), 0);
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
template <size_t S, typename T>
|
|
const util::extent<S,T> util::extent<S,T>::MIN { 0 };
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
template <size_t S, typename T>
|
|
const util::extent<S,T> util::extent<S,T>::MAX {
|
|
std::numeric_limits<T>::max ()
|
|
};
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
namespace debug {
|
|
template <size_t S, typename T>
|
|
struct validator<util::extent,S,T> {
|
|
static bool is_valid (const util::extent<S,T> &e)
|
|
{
|
|
return std::all_of (std::begin (e.data),
|
|
std::end (e.data),
|
|
[] (auto i) { return i >= 0; });
|
|
}
|
|
};
|
|
}
|
|
|
|
template bool debug::valid (const util::extent<2,float>&);
|
|
template bool debug::valid (const util::extent<2,double>&);
|
|
template bool debug::valid (const util::extent<2,uint16_t>&);
|
|
template bool debug::valid (const util::extent<2,uint32_t>&);
|
|
template bool debug::valid (const util::extent<2,uint64_t>&);
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
template <size_t S, typename T>
|
|
std::ostream&
|
|
util::operator<< (std::ostream &os, util::extent<S,T> e)
|
|
{
|
|
os << "[";
|
|
std::copy (std::begin (e.data),
|
|
std::end (e.data),
|
|
std::ostream_iterator<T> (os, ", "));
|
|
os << "]";
|
|
return os;
|
|
}
|
|
|
|
|
|
template std::ostream& util::operator<< (std::ostream&, util::extent<2,uint16_t>);
|
|
template std::ostream& util::operator<< (std::ostream&, util::extent<2,uint32_t>);
|
|
template std::ostream& util::operator<< (std::ostream&, util::extent<2,uint64_t>);
|
|
template std::ostream& util::operator<< (std::ostream&, util::extent<2,float>);
|
|
template std::ostream& util::operator<< (std::ostream&, util::extent<2,double>);
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
namespace util {
|
|
template struct extent<2,uint32_t>;
|
|
template struct extent<2,uint64_t>;
|
|
template struct extent<2,float>;
|
|
template struct extent<2,double>;
|
|
}
|