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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_EXTENT_HPP
|
|
|
|
#define __UTIL_EXTENT_HPP
|
|
|
|
|
2015-03-06 01:15:52 +11:00
|
|
|
#include "coord.hpp"
|
2015-01-16 14:42:04 +11:00
|
|
|
#include "vector.hpp"
|
2014-07-02 15:43:59 +10:00
|
|
|
#include <iostream>
|
|
|
|
|
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
|
|
|
|
*/
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
2015-04-09 17:47:35 +10:00
|
|
|
struct extent : public coord::base<S,T,extent,coord::whd>
|
2015-03-06 01:09:37 +11:00
|
|
|
{
|
2015-04-09 17:47:35 +10:00
|
|
|
using coord::base<S,T,util::extent,coord::whd>::base;
|
2015-03-06 01:09:37 +11:00
|
|
|
|
2015-01-28 14:57:55 +11:00
|
|
|
extent () = default;
|
2015-09-09 18:37:26 +10:00
|
|
|
explicit extent (vector<S,T>);
|
2011-10-26 21:43:38 +11:00
|
|
|
|
|
|
|
T area (void) const;
|
|
|
|
T diameter (void) const;
|
|
|
|
|
2015-03-24 02:43:43 +11:00
|
|
|
template <typename U = float>
|
|
|
|
U aspect (void) const;
|
|
|
|
|
2015-03-03 04:13:29 +11:00
|
|
|
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;
|
|
|
|
|
2015-03-03 04:13:29 +11:00
|
|
|
static const extent MAX;
|
|
|
|
static const extent MIN;
|
2011-10-26 21:43:38 +11:00
|
|
|
};
|
2015-01-15 14:04:18 +11: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>;
|
|
|
|
|
|
|
|
typedef extent2<intmax_t> extent2i;
|
|
|
|
typedef extent2<size_t> extent2u;
|
|
|
|
typedef extent2<float> extent2f;
|
|
|
|
typedef extent2<double> extent2d;
|
2015-01-15 14:04:18 +11:00
|
|
|
|
2015-08-28 20:34:58 +10:00
|
|
|
typedef extent3<size_t> extent3u;
|
|
|
|
typedef extent3<float> extent3f;
|
|
|
|
|
2015-03-03 04:13:29 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
std::ostream& operator<< (std::ostream&, util::extent<S,T>);
|
2011-10-26 21:43:38 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-01-13 18:30:10 +11:00
|
|
|
#include "extent.ipp"
|
|
|
|
|
2014-07-02 15:43:59 +10:00
|
|
|
#endif
|