libcruft-util/aabb.hpp

74 lines
1.9 KiB
C++
Raw Normal View History

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
*
* Copyright 2015 Danny Robson <danny@nerdcruft.net>
*/
#ifndef __UTIL_AABB_HPP
#define __UTIL_AABB_HPP
#include "point.hpp"
#include "extent.hpp"
#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>);
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;
typedef AABB<2,size_t> AABB2u;
typedef AABB<2,intmax_t> AABB2i;
2015-03-07 03:16:57 +11:00
typedef AABB<3,float> AABB3f;
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