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
|
|
|
*
|
2017-08-24 15:54:51 +10:00
|
|
|
* Copyright 2010-2017 Danny Robson <danny@nerdcruft.net>
|
2011-10-26 21:43:38 +11:00
|
|
|
*/
|
|
|
|
|
2018-02-28 11:49:13 +11:00
|
|
|
#ifndef CRUFT_UTIL_EXTENT_HPP
|
|
|
|
#define CRUFT_UTIL_EXTENT_HPP
|
2011-10-26 21:43:38 +11:00
|
|
|
|
2017-11-22 17:03:00 +11:00
|
|
|
#include "coord/fwd.hpp"
|
2016-10-11 23:47:57 +11:00
|
|
|
#include "coord/base.hpp"
|
2015-01-16 14:42:04 +11:00
|
|
|
#include "vector.hpp"
|
2015-09-16 02:26:00 +10:00
|
|
|
#include "point.hpp"
|
|
|
|
|
2017-11-22 17:03:00 +11:00
|
|
|
#include <cstddef>
|
2015-02-20 21:53:51 +11:00
|
|
|
|
2011-10-26 21:43:38 +11:00
|
|
|
namespace util {
|
|
|
|
/**
|
2017-11-22 17:03:00 +11:00
|
|
|
* A pure n-dimensional size, without positioning
|
2011-10-26 21:43:38 +11:00
|
|
|
*/
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
2017-11-22 17:03:00 +11:00
|
|
|
struct extent : public ::util::coord::base<S,T,::util::extent<S,T>>
|
2015-03-06 01:09:37 +11:00
|
|
|
{
|
2017-11-22 17:03:00 +11:00
|
|
|
using ::util::coord::base<S,T,::util::extent<S,T>>::base;
|
2015-03-06 01:09:37 +11:00
|
|
|
|
2015-01-28 14:57:55 +11:00
|
|
|
extent () = default;
|
2017-11-22 17:03:00 +11:00
|
|
|
explicit extent (::util::vector<S,T>);
|
2011-10-26 21:43:38 +11:00
|
|
|
|
2018-02-28 11:49:13 +11:00
|
|
|
constexpr T
|
|
|
|
area (void) const
|
|
|
|
{
|
|
|
|
return std::accumulate (std::begin (this->data),
|
|
|
|
std::end (this->data),
|
|
|
|
T {1},
|
|
|
|
std::multiplies<T> ());
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr 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; })
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2011-10-26 21:43:38 +11:00
|
|
|
|
2015-03-24 02:43:43 +11:00
|
|
|
template <typename U = float>
|
2016-09-28 17:21:02 +10:00
|
|
|
constexpr
|
2018-02-28 11:49:13 +11:00
|
|
|
U aspect (void) const
|
|
|
|
{
|
|
|
|
return static_cast<U> (this->w) / this->h;
|
|
|
|
}
|
2015-03-24 02:43:43 +11:00
|
|
|
|
2017-08-24 15:54:51 +10:00
|
|
|
/// tests whether a point would lie within:
|
|
|
|
/// region { origin, *this }, inclusive of borders.
|
|
|
|
///
|
|
|
|
/// included for parity with util::region.
|
|
|
|
constexpr bool
|
|
|
|
inclusive (util::point<S,T> p) const
|
|
|
|
{
|
|
|
|
return all (p >= T{0} && p <= *this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// tests whether a point would like within:
|
|
|
|
/// region { origin, *this }, exclusive of the bottom-right border
|
|
|
|
/// included for parity with util::region
|
|
|
|
constexpr bool
|
|
|
|
exclusive (point<S,T> p) const
|
|
|
|
{
|
|
|
|
return all (p >= T{0} && p < *this);
|
|
|
|
}
|
2015-09-16 02:26:00 +10:00
|
|
|
|
2017-11-22 17:03:00 +11:00
|
|
|
::util::extent<S,T> expanded (::util::vector<S,T>) const;
|
|
|
|
::util::extent<S,T> expanded (T) const;
|
|
|
|
::util::extent<S,T> contracted (::util::vector<S,T>) const;
|
|
|
|
::util::extent<S,T> contracted (T) const;
|
2015-01-16 14:42:04 +11:00
|
|
|
|
2011-10-26 21:43:38 +11:00
|
|
|
bool empty (void) const;
|
|
|
|
|
2018-02-28 11:49:13 +11:00
|
|
|
static constexpr
|
|
|
|
::util::extent<S,T> max (void)
|
|
|
|
{
|
|
|
|
return extent<S,T> {
|
|
|
|
std::numeric_limits<T>::max ()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static constexpr
|
|
|
|
::util::extent<S,T> min (void)
|
|
|
|
{
|
|
|
|
return extent<S,T> { 0 };
|
|
|
|
}
|
2015-01-15 14:04:18 +11:00
|
|
|
|
2018-03-23 16:38:54 +11:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
class iterator {
|
2015-09-29 17:32:11 +10:00
|
|
|
public:
|
2018-03-23 16:38:54 +11:00
|
|
|
using iterator_category = std::forward_iterator_tag;
|
|
|
|
using value_type = point<S,T>;
|
|
|
|
using difference_type = size_t;
|
|
|
|
using pointer = value_type*;
|
|
|
|
using reference = value_type&;
|
|
|
|
|
|
|
|
|
|
|
|
iterator (point<S,T> _cursor, extent<S,T> _target):
|
|
|
|
m_cursor (_cursor),
|
|
|
|
m_target (_target)
|
|
|
|
{ ; }
|
|
|
|
|
2015-09-29 17:32:11 +10:00
|
|
|
|
2018-03-27 16:05:46 +11:00
|
|
|
point<S,T>& operator* () & { return m_cursor; }
|
|
|
|
const point<S,T>& operator* () const & { return m_cursor; }
|
2015-09-29 17:32:11 +10:00
|
|
|
|
2018-03-23 16:38:54 +11:00
|
|
|
iterator& operator++ (void)&
|
|
|
|
{
|
|
|
|
++m_cursor[0];
|
|
|
|
|
|
|
|
for (size_t i = 0; i < S - 1; ++i) {
|
|
|
|
if (m_cursor[i] < m_target[i])
|
|
|
|
break;
|
|
|
|
|
|
|
|
m_cursor[i] = 0;
|
|
|
|
m_cursor[i+1]++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool operator!= (const iterator &rhs) const { return m_cursor != rhs.m_cursor; }
|
|
|
|
bool operator== (const iterator &rhs) const { return m_cursor == rhs.m_cursor; }
|
2015-09-29 17:32:11 +10:00
|
|
|
|
|
|
|
private:
|
|
|
|
point<S,T> m_cursor;
|
|
|
|
extent<S,T> m_target;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-03-23 16:38:54 +11:00
|
|
|
auto step (void) const
|
|
|
|
{
|
|
|
|
point<S,T> last {0};
|
|
|
|
last[S-1] = this->data[S-1];
|
2015-09-29 17:32:11 +10:00
|
|
|
|
2018-03-23 16:38:54 +11:00
|
|
|
return util::view {
|
|
|
|
iterator {point<S,T> {0}, *this},
|
|
|
|
iterator {last, *this}
|
|
|
|
};
|
|
|
|
}
|
2015-09-29 17:32:11 +10:00
|
|
|
};
|
|
|
|
|
2017-07-28 14:14:08 +10:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2015-07-24 01:34:44 +10:00
|
|
|
// convenience typedefs
|
|
|
|
template <typename T> using extent2 = extent<2,T>;
|
|
|
|
template <typename T> using extent3 = extent<3,T>;
|
|
|
|
|
2016-10-25 17:46:36 +11:00
|
|
|
template <size_t S> using extentu = extent<S,unsigned>;
|
|
|
|
template <size_t S> using extenti = extent<S,int>;
|
2015-10-19 17:09:00 +11:00
|
|
|
template <size_t S> using extentf = extent<S,float>;
|
|
|
|
template <size_t S> using extentd = extent<S,double>;
|
|
|
|
|
2017-07-28 14:14:08 +10:00
|
|
|
|
2016-10-25 17:46:36 +11:00
|
|
|
typedef extent2<int> extent2i;
|
|
|
|
typedef extent2<unsigned> extent2u;
|
2015-07-24 01:34:44 +10:00
|
|
|
typedef extent2<float> extent2f;
|
|
|
|
typedef extent2<double> extent2d;
|
2015-01-15 14:04:18 +11:00
|
|
|
|
2017-07-28 14:14:08 +10:00
|
|
|
|
2016-10-25 17:46:36 +11:00
|
|
|
typedef extent3<unsigned> extent3u;
|
2015-08-28 20:34:58 +10:00
|
|
|
typedef extent3<float> extent3f;
|
2011-10-26 21:43:38 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-07-02 15:43:59 +10:00
|
|
|
#endif
|