2015-03-07 03:16:57 +11:00
|
|
|
/*
|
|
|
|
* This file is part of libgim.
|
|
|
|
*
|
|
|
|
* libgim is free software: you can redistribute it and/or modify it under the
|
|
|
|
* terms of the GNU General Public License as published by the Free Software
|
|
|
|
* Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
* details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __UTIL_AABB_HPP
|
|
|
|
#define __UTIL_AABB_HPP
|
|
|
|
|
|
|
|
#include "point.hpp"
|
|
|
|
#include "extent.hpp"
|
|
|
|
|
2015-03-23 18:43:22 +11:00
|
|
|
#include <cstdint>
|
2015-03-07 03:16:57 +11:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
namespace util {
|
|
|
|
template <size_t S, typename T>
|
|
|
|
struct AABB {
|
|
|
|
AABB () = default;
|
|
|
|
AABB (point<S,T>, point<S,T>);
|
|
|
|
|
|
|
|
extent<S,T> magnitude (void) const;
|
|
|
|
|
2015-04-07 23:10:31 +10:00
|
|
|
bool overlaps (point<S,T>) const;
|
|
|
|
|
2015-04-08 19:00:17 +10:00
|
|
|
point<S,T> closest (point<S,T>) const;
|
|
|
|
|
2015-04-09 14:05:01 +10:00
|
|
|
AABB<S,T>& expand (util::vector<S,T>);
|
|
|
|
AABB<S,T>& expand (T);
|
|
|
|
AABB<S,T> expanded (util::vector<S,T>);
|
|
|
|
AABB<S,T> expanded (T);
|
|
|
|
|
2015-04-08 19:00:17 +10:00
|
|
|
AABB<S,T>& contract (util::vector<S,T>);
|
|
|
|
AABB<S,T>& contract (T);
|
|
|
|
AABB<S,T> contracted (util::vector<S,T>) const;
|
|
|
|
AABB<S,T> contracted (T) const;
|
|
|
|
|
2015-04-08 18:59:45 +10:00
|
|
|
void cover (point<S,T>);
|
2015-03-12 01:05:47 +11:00
|
|
|
|
2015-03-07 03:16:57 +11:00
|
|
|
AABB<S,T> operator+ (vector<S,T>) const;
|
|
|
|
AABB<S,T> operator- (vector<S,T>) const;
|
|
|
|
|
2015-04-13 16:44:30 +10:00
|
|
|
bool operator== (AABB) const;
|
|
|
|
|
2015-03-07 03:16:57 +11:00
|
|
|
point<S,T> p0;
|
|
|
|
point<S,T> p1;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef AABB<2,float> AABB2f;
|
2015-04-07 16:53:46 +10:00
|
|
|
typedef AABB<2,size_t> AABB2u;
|
|
|
|
typedef AABB<2,intmax_t> AABB2i;
|
2015-03-23 18:43:22 +11:00
|
|
|
|
2015-03-07 03:16:57 +11:00
|
|
|
typedef AABB<3,float> AABB3f;
|
2015-04-07 16:53:46 +10:00
|
|
|
typedef AABB<3,size_t> AABB3u;
|
|
|
|
typedef AABB<3,intmax_t> AABB3i;
|
2015-03-07 03:16:57 +11:00
|
|
|
|
|
|
|
template <size_t S, typename T>
|
|
|
|
std::ostream& operator<< (std::ostream&, AABB<S,T>);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|