2011-10-26 21:43:38 +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
|
2011-10-26 21:43:38 +11:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-10-26 21:43:38 +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.
|
2011-10-26 21:43:38 +11:00
|
|
|
*
|
2015-01-15 14:04:18 +11:00
|
|
|
* 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
|
|
|
|
2015-03-03 19:43:09 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
2015-03-06 01:09:37 +11:00
|
|
|
util::extent<S,T>::extent (vector<S,T> _v)
|
|
|
|
{
|
2015-09-09 18:40:07 +10:00
|
|
|
std::transform (std::begin (_v),
|
|
|
|
std::end (_v),
|
|
|
|
this->begin (),
|
|
|
|
[] (auto i) {
|
|
|
|
// using std::abs gives unsigned abs warnings under clang. this tricks
|
|
|
|
// it sufficiently to quiet the warnings.
|
|
|
|
return i < 0 ? -i : i;
|
|
|
|
});
|
2015-03-06 01:09:37 +11:00
|
|
|
}
|
2011-10-26 21:43:38 +11:00
|
|
|
|
|
|
|
|
2015-02-12 17:40:36 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
2011-10-26 21:43:38 +11:00
|
|
|
T
|
2015-03-03 04:13:29 +11:00
|
|
|
util::extent<S,T>::diameter (void) const
|
2015-02-13 16:30:22 +11:00
|
|
|
{
|
2015-03-03 19:43:09 +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
|
|
|
//-----------------------------------------------------------------------------
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
2011-10-26 21:43:38 +11:00
|
|
|
T
|
2015-03-03 04:13:29 +11:00
|
|
|
util::extent<S,T>::area (void) const
|
2015-02-13 16:30:22 +11:00
|
|
|
{
|
2015-03-03 19:43:09 +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
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-03-03 04:13:29 +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
|
|
|
{
|
2015-03-03 19:43:09 +11:00
|
|
|
return *this + mag;
|
2015-01-16 14:42:04 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-05 22:50:52 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2015-03-03 04:13:29 +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
|
|
|
{
|
2015-04-08 19:00:33 +10:00
|
|
|
return *this + util::vector<S,T> {t};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <size_t S, typename T>
|
|
|
|
util::extent<S,T>
|
|
|
|
util::extent<S,T>::contracted (vector<S,T> t) const
|
|
|
|
{
|
|
|
|
return *this - t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <size_t S, typename T>
|
|
|
|
util::extent<S,T>
|
|
|
|
util::extent<S,T>::contracted (T t) const
|
|
|
|
{
|
|
|
|
return *this - vector<S,T> {-t};
|
2015-02-12 17:40:47 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-12 17:40:36 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
2011-10-26 21:43:38 +11:00
|
|
|
bool
|
2015-03-03 04:13:29 +11:00
|
|
|
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
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
2015-03-03 19:43:09 +11:00
|
|
|
const util::extent<S,T> util::extent<S,T>::MIN { 0 };
|
2015-03-02 18:47:22 +11:00
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2015-03-03 04:13:29 +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 {
|
2015-03-03 04:13:29 +11:00
|
|
|
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
|
|
|
{
|
2015-03-06 01:09:37 +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
|
|
|
|
2015-03-03 04:13:29 +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
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
2014-07-02 15:43:59 +10:00
|
|
|
std::ostream&
|
2015-03-03 04:13:29 +11:00
|
|
|
util::operator<< (std::ostream &os, util::extent<S,T> e)
|
2015-02-13 16:30:22 +11:00
|
|
|
{
|
2015-03-06 01:09:37 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-05 22:50:52 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2012-05-26 18:01:04 +10:00
|
|
|
namespace util {
|
2015-03-06 17:52:40 +11:00
|
|
|
#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)
|
2012-05-26 18:01:04 +10:00
|
|
|
}
|