libcruft-util/extent.hpp

115 lines
3.2 KiB
C++
Raw Normal View History

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
*
* Copyright 2010-2015 Danny Robson <danny@nerdcruft.net>
2011-10-26 21:43:38 +11:00
*/
#ifndef __UTIL_EXTENT_HPP
#define __UTIL_EXTENT_HPP
#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"
2015-02-20 21:53:51 +11:00
2011-10-26 21:43:38 +11:00
namespace util {
/**
* A pure two-dimensional size, without positioning
*/
template <size_t S, typename T>
struct extent : public coord::base<S,T,extent,coord::whd>
{
using coord::base<S,T,util::extent,coord::whd>::base;
2015-01-28 14:57:55 +11:00
extent () = default;
explicit extent (vector<S,T>);
2011-10-26 21:43:38 +11:00
constexpr T area (void) const;
constexpr T diameter (void) const;
2011-10-26 21:43:38 +11:00
template <typename U = float>
constexpr
U aspect (void) const;
2015-09-16 02:26:00 +10:00
template <typename U>
bool includes (util::point<S,U>) const;
extent expanded (vector<S,T>) const;
extent expanded (T) const;
2015-04-08 19:00:33 +10:00
extent contracted (vector<S,T>) const;
extent contracted (T) const;
2015-01-16 14:42:04 +11:00
2011-10-26 21:43:38 +11:00
bool empty (void) const;
static constexpr extent max (void);
static constexpr extent min (void);
2011-10-26 21:43:38 +11:00
};
template <size_t S, typename T>
struct extent_range {
public:
struct iterator : public std::iterator<std::forward_iterator_tag, point<S,T>, size_t> {
public:
iterator (extent<S,T>, util::point<S,T>);
point<S,T> operator* () const;
iterator& operator++ (void);
bool operator!= (const iterator &rhs) const;
bool operator== (const iterator &rhs) const;
private:
point<S,T> m_cursor;
extent<S,T> m_target;
};
extent_range (extent<S,T> target);
iterator begin (void) const;
iterator end (void) const;
private:
extent<S,T> m_target;
};
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>;
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>;
typedef extent2<int> extent2i;
typedef extent2<unsigned> extent2u;
2015-07-24 01:34:44 +10:00
typedef extent2<float> extent2f;
typedef extent2<double> extent2d;
typedef extent3<unsigned> extent3u;
2015-08-28 20:34:58 +10:00
typedef extent3<float> extent3f;
template <typename T> using extent_range2 = extent_range<2,T>;
template <typename T> using extent_range3 = extent_range<3,T>;
using extent_range2u = extent_range2<typename extent2u::value_type>;
using extent_range2i = extent_range2<typename extent2i::value_type>;
using extent_range3u = extent_range2<typename extent3u::value_type>;
2011-10-26 21:43:38 +11:00
}
#include "extent.ipp"
2014-07-02 15:43:59 +10:00
#endif