OWL
OptiX7 Wrapper Library
box.h
Go to the documentation of this file.
1 // ======================================================================== //
2 // Copyright 2018-2019 Ingo Wald //
3 // //
4 // Licensed under the Apache License, Version 2.0 (the "License"); //
5 // you may not use this file except in compliance with the License. //
6 // You may obtain a copy of the License at //
7 // //
8 // http://www.apache.org/licenses/LICENSE-2.0 //
9 // //
10 // Unless required by applicable law or agreed to in writing, software //
11 // distributed under the License is distributed on an "AS IS" BASIS, //
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //
13 // See the License for the specific language governing permissions and //
14 // limitations under the License. //
15 // ======================================================================== //
16 
17 #pragma once
18 
19 #include "vec.h"
20 
21 namespace owl {
22  namespace common {
23 
24  template<typename T>
25  struct interval {
26  typedef T scalar_t;
27  inline __both__ interval()
28  : lower(owl::common::empty_bounds_lower<T>()),
29  upper(owl::common::empty_bounds_upper<T>())
30  {}
31  inline __both__ interval(T begin, T end) : begin(begin), end(end) {}
32 
33  union {
34  T begin;
35  T lower;
36  T lo;
37  };
38  union {
39  T end;
40  T upper;
41  T hi;
42  };
43 
44  inline __both__ bool contains(const T &t) const { return t >= lower && t <= upper; }
45  inline __both__ bool is_empty() const { return begin > end; }
46  inline __both__ T center() const { return (begin+end)/2; }
47  inline __both__ T span() const { return end - begin; }
48  inline __both__ T diagonal() const { return end - begin; }
49  inline __both__ interval<T> &extend(const T &t)
50  { lower = min(lower,t); upper = max(upper,t); return *this; }
52  { lower = min(lower,t.lower); upper = max(upper,t.upper); return *this; }
53  inline __both__ interval<T> including(const T &t)
54  { return interval<T>(min(lower,t),max(upper,t)); }
55 
56  static inline __both__ interval<T> positive()
57  {
58  return interval<T>(0.f,owl::common::open_range_upper<T>());
59  }
60  };
61 
62  template<typename T>
63  inline __both__ std::ostream &operator<<(std::ostream &o, const interval<T> &b)
64  {
65 #ifndef __CUDACC__
66  o << "[" << b.lower << ":" << b.upper << "]";
67 #endif
68  return o;
69  }
70 
71  template<typename T>
72  inline __both__ interval<T> build_interval(const T &a, const T &b)
73  { return interval<T>(min(a,b),max(a,b)); }
74 
75  template<typename T>
77  { return interval<T>(max(a.lower,b.lower),min(a.upper,b.upper)); }
78 
79  template<typename T>
80  inline __both__ interval<T> operator-(const interval<T> &a, const T &b)
81  { return interval<T>(a.lower-b,a.upper-b); }
82 
83  template<typename T>
84  inline __both__ interval<T> operator*(const interval<T> &a, const T &b)
85  { return build_interval<T>(a.lower*b,a.upper*b); }
86 
87  template<typename T>
88  inline __both__ bool operator==(const interval<T> &a, const interval<T> &b)
89  { return a.lower == b.lower && a.upper == b.upper; }
90 
91  template<typename T>
92  inline __both__ bool operator!=(const interval<T> &a, const interval<T> &b)
93  { return !(a == b); }
94 
95 
96 
97  template<typename T>
98  struct box_t {
99  typedef T vec_t;
100  typedef typename T::scalar_t scalar_t;
101  enum { dims = T::dims };
102 
103  inline __both__ box_t()
104  : lower(owl::common::empty_bounds_lower<typename T::scalar_t>()),
105  upper(owl::common::empty_bounds_upper<typename T::scalar_t>())
106  {}
107 
108  // /*! construct a new, origin-oriented box of given size */
109  // explicit inline __both__ box_t(const vec_t &box_size)
110  // : lower(vec_t(0)),
111  // upper(box_size)
112  // {}
114  explicit inline __both__ box_t(const vec_t &v)
115  : lower(v),
116  upper(v)
117  {}
118 
120  inline __both__ box_t(const vec_t &lo, const vec_t &hi)
121  : lower(lo),
122  upper(hi)
123  {}
124 
126  inline __both__ box_t including(const vec_t &other) const
127  { return box_t(min(lower,other),max(upper,other)); }
129  inline __both__ box_t including(const box_t &other) const
130  { return box_t(min(lower,other.lower),max(upper,other.upper)); }
131 
132 
134  inline __both__ box_t &extend(const vec_t &other)
135  { lower = min(lower,other); upper = max(upper,other); return *this; }
137  inline __both__ box_t &extend(const box_t &other)
138  { lower = min(lower,other.lower); upper = max(upper,other.upper); return *this; }
139 
140 
142  inline __both__ interval<scalar_t> get_slab(const uint32_t dim)
143  {
144  return interval<scalar_t>(lower[dim],upper[dim]);
145  }
146 
147  inline __both__ bool contains(const vec_t &point) const
148  { return !(any_less_than(point,lower) || any_greater_than(point,upper)); }
149 
150  inline __both__ bool overlaps(const box_t &other) const
151  { return !(any_less_than(other.upper,lower) || any_greater_than(other.lower,upper)); }
152 
153  inline __both__ vec_t center() const { return (lower+upper)/(typename vec_t::scalar_t)2; }
154  inline __both__ vec_t span() const { return upper-lower; }
155  inline __both__ vec_t size() const { return upper-lower; }
156 
158  { return owl::common::volume(size()); }
159 
160  inline __both__ bool empty() const { return any_less_than(upper,lower); }
161 
163  };
164 
165  // =======================================================
166  // default functions
167  // =======================================================
168 
169  template<typename T>
171  { return area(b.upper - b.lower); }
172 
173  template<typename T>
175  {
176  const vec_t<T,3> diag = b.upper - b.lower;
177  return 2.f*(area(vec_t<T,2>(diag.x,diag.y))+
178  area(vec_t<T,2>(diag.y,diag.z))+
179  area(vec_t<T,2>(diag.z,diag.x)));
180  }
181 
182  template<typename T>
184  {
185  const vec_t<T,3> diag = b.upper - b.lower;
186  return diag.x*diag.y*diag.z;
187  }
188 
189  template<typename T>
190  inline __both__ std::ostream &operator<<(std::ostream &o, const box_t<T> &b)
191  {
192 #ifndef __CUDACC__
193  o << "[" << b.lower << ":" << b.upper << "]";
194 #endif
195  return o;
196  }
197 
198  template<typename T>
199  inline __both__ box_t<T> intersection(const box_t<T> &a, const box_t<T> &b)
200  { return box_t<T>(max(a.lower,b.lower),min(a.upper,b.upper)); }
201 
202  template<typename T>
203  inline __both__ bool operator==(const box_t<T> &a, const box_t<T> &b)
204  { return a.lower == b.lower && a.upper == b.upper; }
205 
206  template<typename T>
207  inline __both__ bool operator!=(const box_t<T> &a, const box_t<T> &b)
208  { return !(a == b); }
209 
210 
211 
212 
213  // =======================================================
214  // default instantiations
215  // =======================================================
216 
217 #define _define_box_types(T,t) \
218  typedef box_t<vec_t<T,2>> box2##t; \
219  typedef box_t<vec_t<T,3>> box3##t; \
220  typedef box_t<vec_t<T,4>> box4##t; \
221  typedef box_t<vec3a_t<T>> box3##t##a; \
222 
223  _define_box_types(short int,s);
224  _define_box_types(unsigned short int,us);
226  _define_box_types(unsigned int,ui);
228 
229 #undef _define_box_types
230 
231  } // ::owl::common
232 } // ::owl
owl::common::vec_t< T, 3 >::z
T z
Definition: vec.h:194
owl::common::interval::begin
T begin
Definition: box.h:34
owl::common::box_t::including
__both__ box_t including(const vec_t &other) const
Definition: box.h:126
owl::common::interval::scalar_t
T scalar_t
Definition: box.h:26
owl::common::operator<<
std::ostream & operator<<(std::ostream &cout, const AffineSpaceT< L > &m)
Definition: AffineSpace.h:153
owl::common::box_t::volume
__both__ long_type_of< typename T::scalar_t >::type volume() const
Definition: box.h:157
owl::common::interval::hi
T hi
Definition: box.h:41
owl::common::box_t::span
__both__ vec_t span() const
Definition: box.h:154
owl::common::box_t::extend
__both__ box_t & extend(const vec_t &other)
Definition: box.h:134
owl::common::box_t::size
__both__ vec_t size() const
Definition: box.h:155
owl::common::interval::end
T end
Definition: box.h:39
owl::common::box_t::extend
__both__ box_t & extend(const box_t &other)
Definition: box.h:137
owl::common::vec_t< T, 3 >::y
T y
Definition: vec.h:194
owl::common::vec_t< T, 2 >
Definition: vec.h:96
owl::common::box_t::lower
vec_t lower
Definition: box.h:162
owl::common::any_less_than
__both__ bool any_less_than(const vec_t< T, N > &a, const vec_t< T, N > &b)
Definition: functors.h:29
owl::common::box_t::box_t
__both__ box_t(const vec_t &v)
Definition: box.h:114
owl::common::interval::extend
__both__ interval< T > & extend(const interval< T > &t)
Definition: box.h:51
owl::common::box_t::overlaps
__both__ bool overlaps(const box_t &other) const
Definition: box.h:150
owl::common::interval::center
__both__ T center() const
Definition: box.h:46
owl::common::operator-
AffineSpaceT< L > operator-(const AffineSpaceT< L > &a)
Definition: AffineSpace.h:116
owl::common::interval::lo
T lo
Definition: box.h:36
owl::common::interval::upper
T upper
Definition: box.h:40
owl::common::interval::including
__both__ interval< T > including(const T &t)
Definition: box.h:53
owl::common::_define_box_types
_define_box_types(short int, s)
owl::common::box_t::box_t
__both__ box_t(const vec_t &lo, const vec_t &hi)
Definition: box.h:120
owl::common::interval::diagonal
__both__ T diagonal() const
Definition: box.h:48
owl::common::interval::positive
static __both__ interval< T > positive()
Definition: box.h:56
owl::common::operator!=
bool operator!=(const AffineSpaceT< L > &a, const AffineSpaceT< L > &b)
Definition: AffineSpace.h:147
owl::common::interval::interval
__both__ interval(T begin, T end)
Definition: box.h:31
owl::common::box_t::center
__both__ vec_t center() const
Definition: box.h:153
owl::common::box_t::vec_t
T vec_t
Definition: box.h:99
owl::common::empty_bounds_upper
__both__ T empty_bounds_upper()
Definition: constants.h:155
owl::common::box_t::empty
__both__ bool empty() const
Definition: box.h:160
owl::common::interval::span
__both__ T span() const
Definition: box.h:47
owl::common::intersection
__both__ box_t< T > intersection(const box_t< T > &a, const box_t< T > &b)
Definition: box.h:199
owl::common::vec_t< T, 3 >
Definition: vec.h:143
owl::common::interval::contains
__both__ bool contains(const T &t) const
Definition: box.h:44
owl::common::area
__both__ long_type_of< T >::type area(const box_t< vec_t< T, 2 >> &b)
Definition: box.h:170
owl::common::interval
Definition: box.h:25
owl::common::interval::is_empty
__both__ bool is_empty() const
Definition: box.h:45
owl::common::operator==
bool operator==(const AffineSpaceT< L > &a, const AffineSpaceT< L > &b)
Comparison Operators.
Definition: AffineSpace.h:146
owl::common::box_t::get_slab
__both__ interval< scalar_t > get_slab(const uint32_t dim)
Definition: box.h:142
owl::common::long_type_of::type
T type
Definition: vec.h:28
owl::common::interval::lower
T lower
Definition: box.h:35
owl::common::box_t::dims
@ dims
Definition: box.h:101
owl::common::interval::extend
__both__ interval< T > & extend(const T &t)
Definition: box.h:49
vec.h
owl::common::operator*
AffineSpaceT< L > operator*(const ScalarT &a, const AffineSpaceT< L > &b)
Definition: AffineSpace.h:127
owl
Definition: APIContext.cpp:36
owl::common::any_greater_than
__both__ bool any_greater_than(const vec_t< T, N > &a, const vec_t< T, N > &b)
Definition: functors.h:37
owl::common::vec_t< T, 3 >::x
T x
Definition: vec.h:194
owl::common::box_t
Definition: box.h:98
owl::common::box_t::including
__both__ box_t including(const box_t &other) const
Definition: box.h:129
owl::common::box_t::upper
vec_t upper
Definition: box.h:162
__both__
#define __both__
Definition: owl-common.h:102
owl::common::empty_bounds_lower
__both__ T empty_bounds_lower()
Definition: constants.h:149
owl::common::intersect
__both__ interval< T > intersect(const interval< T > &a, const interval< T > &b)
Definition: box.h:76
owl::common::volume
__both__ long_type_of< T >::type volume(const box_t< vec_t< T, 3 >> &b)
Definition: box.h:183
owl::common::box_t::contains
__both__ bool contains(const vec_t &point) const
Definition: box.h:147
owl::common::box_t::box_t
__both__ box_t()
Definition: box.h:103
owl::common::interval::interval
__both__ interval()
Definition: box.h:27
owl::common::box_t::scalar_t
T::scalar_t scalar_t
Definition: box.h:100
owl::common::build_interval
__both__ interval< T > build_interval(const T &a, const T &b)
Definition: box.h:72