2015-01-13 18:30:10 +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-01-13 18:30:10 +11:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-01-13 18:30:10 +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-01-13 18:30:10 +11:00
|
|
|
*
|
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __UTIL_EXTENT_IPP
|
2015-03-03 19:43:09 +11:00
|
|
|
#error
|
2015-01-13 18:30:10 +11:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define __UTIL_EXTENT_IPP
|
|
|
|
|
2015-03-03 19:43:09 +11:00
|
|
|
#include <algorithm>
|
2016-12-12 17:06:55 +11:00
|
|
|
#include <limits>
|
2015-03-03 19:43:09 +11:00
|
|
|
|
|
|
|
|
2016-09-28 17:21:02 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <size_t S, typename T>
|
|
|
|
constexpr
|
|
|
|
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>
|
|
|
|
constexpr
|
|
|
|
T
|
|
|
|
util::extent<S,T>::area (void) const
|
|
|
|
{
|
|
|
|
return std::accumulate (std::begin (this->data),
|
|
|
|
std::end (this->data),
|
|
|
|
T {1},
|
|
|
|
std::multiplies<T> ());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-16 02:26:00 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-03-24 02:43:43 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
template <typename U>
|
2016-09-28 17:21:02 +10:00
|
|
|
constexpr
|
2015-03-03 19:43:09 +11:00
|
|
|
U
|
2015-03-24 02:43:43 +11:00
|
|
|
util::extent<S,T>::aspect (void) const
|
2015-03-03 19:43:09 +11:00
|
|
|
{
|
2015-03-24 02:43:43 +11:00
|
|
|
return static_cast<U> (this->w) / this->h;
|
2015-01-13 18:30:10 +11:00
|
|
|
}
|
2015-09-16 02:26:00 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <size_t S, typename T>
|
|
|
|
template <typename U>
|
|
|
|
bool
|
|
|
|
util::extent<S,T>::includes (point<S,U> p) const
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < S; ++i)
|
|
|
|
if (p[i] < 0 || static_cast<T> (p[i]) >= this->data[i])
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
2016-12-12 17:06:55 +11:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <size_t S, typename T>
|
|
|
|
constexpr
|
|
|
|
util::extent<S,T>
|
|
|
|
util::extent<S,T>::max (void)
|
|
|
|
{
|
|
|
|
return extent<S,T> {
|
|
|
|
std::numeric_limits<T>::max ()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
template <size_t S, typename T>
|
|
|
|
constexpr
|
|
|
|
util::extent<S,T>
|
|
|
|
util::extent<S,T>::min (void)
|
|
|
|
{
|
|
|
|
return extent<S,T> { 0 };
|
|
|
|
}
|