libcruft-util/extent.cpp

154 lines
4.4 KiB
C++
Raw Normal View History

2011-10-26 21:43:38 +11:00
/*
* 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>
2011-10-26 21:43:38 +11:00
*/
#include "extent.hpp"
#include "debug.hpp"
#include "maths.hpp"
#include <cmath>
2015-02-20 21:53:51 +11:00
///////////////////////////////////////////////////////////////////////////////
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));
}
2011-10-26 21:43:38 +11:00
2015-02-12 17:40:36 +11:00
///////////////////////////////////////////////////////////////////////////////
template <size_t S, typename T>
2011-10-26 21:43:38 +11:00
T
util::extent<S,T>::diameter (void) const
2015-02-13 16:30:22 +11:00
{
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; })
)
);
2011-10-26 21:43:38 +11:00
}
2015-02-12 17:40:36 +11:00
//-----------------------------------------------------------------------------
template <size_t S, typename T>
2011-10-26 21:43:38 +11:00
T
util::extent<S,T>::area (void) const
2015-02-13 16:30:22 +11:00
{
return std::accumulate (std::begin (this->data),
std::end (this->data),
T {1},
std::multiplies<T> ());
2015-02-13 16:30:22 +11:00
}
2011-10-26 21:43:38 +11:00
2015-02-12 17:40:36 +11:00
///////////////////////////////////////////////////////////////////////////////
template <size_t S, typename T>
util::extent<S,T>
util::extent<S,T>::expanded (util::vector<S,T> mag) const
2015-01-16 14:42:04 +11:00
{
return *this + mag;
2015-01-16 14:42:04 +11:00
}
//-----------------------------------------------------------------------------
template <size_t S, typename T>
util::extent<S,T>
util::extent<S,T>::expanded (T t) const
2015-02-12 17:40:47 +11:00
{
return expanded (util::vector<S,T> {t});
2015-02-12 17:40:47 +11:00
}
2015-02-12 17:40:36 +11:00
///////////////////////////////////////////////////////////////////////////////
template <size_t S, typename T>
2011-10-26 21:43:38 +11:00
bool
util::extent<S,T>::empty (void) const
2015-02-13 16:30:22 +11:00
{
return almost_equal (area(), 0);
}
2011-10-26 21:43:38 +11:00
2015-03-02 18:47:22 +11:00
///////////////////////////////////////////////////////////////////////////////
template <size_t S, typename T>
const util::extent<S,T> util::extent<S,T>::MIN { 0 };
2015-03-02 18:47:22 +11:00
//-----------------------------------------------------------------------------
template <size_t S, typename T>
const util::extent<S,T> util::extent<S,T>::MAX {
2015-03-02 18:47:22 +11:00
std::numeric_limits<T>::max ()
};
2015-02-12 17:40:36 +11:00
///////////////////////////////////////////////////////////////////////////////
2015-02-13 17:32:08 +11:00
namespace debug {
template <size_t S, typename T>
struct validator<util::extent,S,T> {
static bool is_valid (const util::extent<S,T> &e)
2015-02-13 17:32:08 +11:00
{
return std::all_of (std::begin (e.data),
std::end (e.data),
[] (auto i) { return i >= 0; });
2015-02-13 17:32:08 +11:00
}
};
}
2011-10-26 21:43:38 +11:00
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>&);
2011-10-26 21:43:38 +11:00
2015-02-12 17:40:36 +11:00
///////////////////////////////////////////////////////////////////////////////
template <size_t S, typename T>
2014-07-02 15:43:59 +10:00
std::ostream&
util::operator<< (std::ostream &os, util::extent<S,T> e)
2015-02-13 16:30:22 +11:00
{
os << "[";
std::copy (std::begin (e.data),
std::end (e.data),
std::ostream_iterator<T> (os, ", "));
os << "]";
2014-07-02 15:43:59 +10:00
return os;
}
//-----------------------------------------------------------------------------
namespace util {
#define INSTANTIATE_S_T(S,T) \
template struct extent<S,T>; \
template std::ostream& operator<< (std::ostream&, extent<S,T>);
#define INSTANTIATE(T) \
INSTANTIATE_S_T(2,T) \
INSTANTIATE_S_T(3,T)
INSTANTIATE(uint32_t)
INSTANTIATE(uint64_t)
INSTANTIATE(float)
INSTANTIATE(double)
}