2015-03-07 03:16:57 +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-03-07 03:16:57 +11:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2015-03-07 03:16:57 +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-03-07 03:16:57 +11:00
|
|
|
*
|
2016-03-11 12:48:19 +11:00
|
|
|
* Copyright 2015-2016 Danny Robson <danny@nerdcruft.net>
|
2015-03-07 03:16:57 +11:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-10-13 18:19:47 +11:00
|
|
|
#ifndef __UTIL_GEOM_AABB_HPP
|
|
|
|
#define __UTIL_GEOM_AABB_HPP
|
2015-03-07 03:16:57 +11:00
|
|
|
|
2015-10-13 18:19:47 +11:00
|
|
|
#include "../point.hpp"
|
|
|
|
#include "../extent.hpp"
|
2016-03-11 12:48:19 +11:00
|
|
|
#include "../coord/iostream.hpp"
|
2015-03-07 03:16:57 +11:00
|
|
|
|
2015-03-23 18:43:22 +11:00
|
|
|
#include <cstdint>
|
2015-03-07 03:16:57 +11:00
|
|
|
|
2015-10-13 18:19:47 +11:00
|
|
|
namespace util { namespace geom {
|
2015-03-07 03:16:57 +11:00
|
|
|
template <size_t S, typename T>
|
|
|
|
struct AABB {
|
|
|
|
AABB () = default;
|
|
|
|
AABB (point<S,T>, point<S,T>);
|
|
|
|
|
2015-04-15 17:16:34 +10:00
|
|
|
T diameter (void) const;
|
2015-03-07 03:16:57 +11:00
|
|
|
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>);
|
2015-10-13 18:19:47 +11:00
|
|
|
} }
|
2015-03-07 03:16:57 +11:00
|
|
|
|
2015-10-14 15:32:53 +11:00
|
|
|
#include "aabb.ipp"
|
|
|
|
|
2015-03-07 03:16:57 +11:00
|
|
|
#endif
|