OWL
OptiX7 Wrapper Library
vec.h
Go to the documentation of this file.
1 // ======================================================================== //
2 // Copyright 2018-2020 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 "owl/common/owl-common.h"
21 #include <iostream>
22 #include <math.h>
23 #include <algorithm>
24 
25 namespace owl {
26  namespace common {
27 
28  template<typename T> struct long_type_of { typedef T type; };
29  template<> struct long_type_of<int32_t> { typedef int64_t type; };
30  template<> struct long_type_of<uint32_t> { typedef uint64_t type; };
31 
32  template<typename T, int N>
33  struct OWL_INTERFACE vec_t { T t[N]; };
34 
35 
36  template<typename ScalarTypeA, typename ScalarTypeB> struct BinaryOpResultType;
37 
38  // Binary Result type: scalar type with itself always returns same type
39  template<typename ScalarType>
40  struct BinaryOpResultType<ScalarType,ScalarType> { typedef ScalarType type; };
41 
42  template<> struct BinaryOpResultType<int,float> { typedef float type; };
43  template<> struct BinaryOpResultType<float,int> { typedef float type; };
44  template<> struct BinaryOpResultType<unsigned int,float> { typedef float type; };
45  template<> struct BinaryOpResultType<float,unsigned int> { typedef float type; };
46 
47  template<> struct BinaryOpResultType<int,double> { typedef double type; };
48  template<> struct BinaryOpResultType<double,int> { typedef double type; };
49  template<> struct BinaryOpResultType<unsigned int,double> { typedef double type; };
50  template<> struct BinaryOpResultType<double,unsigned int> { typedef double type; };
51 
52  // ------------------------------------------------------------------
53  // vec1 - not really a vector, but makes a scalar look like a
54  // vector, so we can use it in, say, box1f
55  // ------------------------------------------------------------------
56  template<typename T>
57  struct OWL_INTERFACE vec_t<T,1> {
58  enum { dims = 1 };
59  typedef T scalar_t;
60 
61  inline __both__ vec_t() {}
62  inline __both__ vec_t(const T &v) : v(v) {}
63 
65  inline __both__ vec_t<T,1> &operator=(const vec_t<T,1> &other) {
66  this->v = other.v;
67  return *this;
68  }
69 
71  template<typename OT>
72  inline __both__ explicit vec_t(const vec_t<OT,1> &o) : v(o.v) {}
73 
74  inline __both__ T &operator[](size_t dim) {
75  assert(dim == 0);
76  return x;
77  // return (&x)[dim];
78  }
79  inline __both__ const T &operator[](size_t dim) const
80  {
81  assert(dim == 0);
82  return x;
83  // return (&x)[dim];
84  }
85 
86  union {
87  T v;
88  T x;
89  };
90  };
91 
92  // ------------------------------------------------------------------
93  // vec2
94  // ------------------------------------------------------------------
95  template<typename T>
96  struct OWL_INTERFACE vec_t<T,2> {
97  enum { dims = 2 };
98  typedef T scalar_t;
99 
100  inline __both__ vec_t() {}
101  inline __both__ vec_t(const T &t) : x(t), y(t) {}
102  inline __both__ vec_t(const T &x, const T &y) : x(x), y(y) {}
103 #ifdef __CUDACC__
104  inline __both__ vec_t(const float2 v) : x(v.x), y(v.y) {}
105  inline __both__ vec_t(const int2 v) : x(v.x), y(v.y) {}
106  inline __both__ vec_t(const uint2 v) : x(v.x), y(v.y) {}
107 
108  inline __both__ operator float2() const { return make_float2(x,y); }
109  inline __both__ operator int2() const { return make_int2(x,y); }
110  inline __both__ operator uint2() const { return make_uint2(x,y); }
111 
114  inline __both__ operator dim3() const { dim3 d; d.x = x; d.y = y; d.z = 1; return d; }
115  inline explicit __both__ vec_t(const dim3 v) : x(v.x), y(v.y) {}
116 #endif
117 
119  inline __both__ vec_t<T,2> &operator=(const vec_t<T,2> &other) {
120  this->x = other.x;
121  this->y = other.y;
122  return *this;
123  }
124 
126  template<typename OT>
127  inline __both__ explicit vec_t(const vec_t<OT,2> &o) : x((T)o.x), y((T)o.y) {}
128 
129  inline __both__ T &operator[](size_t dim) { return (&x)[dim]; }
130  inline __both__ const T &operator[](size_t dim) const { return (&x)[dim]; }
131 
132  union {
133  struct { T x, y; };
134  struct { T s, t; };
135  struct { T u, v; };
136  };
137  };
138 
139  // ------------------------------------------------------------------
140  // vec3
141  // ------------------------------------------------------------------
142  template<typename T>
143  struct OWL_INTERFACE vec_t<T,3> {
144  enum { dims = 3 };
145  typedef T scalar_t;
146 
147  inline __both__ vec_t() {}
148  inline __both__ vec_t(const T &t) : x(t), y(t), z(t) {}
149  inline __both__ vec_t(const T &_x, const T &_y, const T &_z) : x(_x), y(_y), z(_z) {}
150 #ifdef __CUDACC__
151  inline __both__ vec_t(const int3 &v) : x(v.x), y(v.y), z(v.z) {}
152  inline __both__ vec_t(const uint3 &v) : x(v.x), y(v.y), z(v.z) {}
153  inline __both__ vec_t(const float3 &v) : x(v.x), y(v.y), z(v.z) {}
157  inline __both__ vec_t(const float4 v) : x(v.x), y(v.y), z(v.z) {}
161  inline __both__ vec_t(const int4 v) : x(v.x), y(v.y), z(v.z) {}
165  inline __both__ vec_t(const uint4 v) : x(v.x), y(v.y), z(v.z) {}
166  inline __both__ operator float3() const { return make_float3(x,y,z); }
167  inline __both__ operator int3() const { return make_int3(x,y,z); }
168  inline __both__ operator uint3() const { return make_uint3(x,y,z); }
169 #endif
170  inline __both__ explicit vec_t(const vec_t<T,4> &v);
172  template<typename OT>
173  inline __both__ explicit vec_t(const vec_t<OT,3> &o) : x((T)o.x), y((T)o.y), z((T)o.z) {}
174 
176  inline __both__ vec_t<T,3> yzx() const { return vec_t<T,3>(y,z,x); }
177 
179  inline __both__ vec_t<T,3> &operator=(const vec_t<T,3> &other) {
180  this->x = other.x;
181  this->y = other.y;
182  this->z = other.z;
183  return *this;
184  }
185 
186  inline __both__ T &operator[](size_t dim) { return (&x)[dim]; }
187  inline __both__ const T &operator[](size_t dim) const { return (&x)[dim]; }
188 
189  template<typename OT, typename Lambda>
190  static inline __both__ vec_t<T,3> make_from(const vec_t<OT,3> &v, const Lambda &lambda)
191  { return vec_t<T,3>(lambda(v.x),lambda(v.y),lambda(v.z)); }
192 
193  union {
194  struct { T x, y, z; };
195  struct { T r, s, t; };
196  struct { T u, v, w; };
197  };
198  };
199 
200  // ------------------------------------------------------------------
201  // vec3a
202  // ------------------------------------------------------------------
203  template<typename T>
204  struct OWL_INTERFACE OWL_ALIGN(16) vec3a_t : public vec_t<T,3> {
205  inline vec3a_t() {}
206  inline vec3a_t(const T &t) : vec_t<T,3>(t) {}
207  inline vec3a_t(const T &x, const T &y, const T &z) : vec_t<T,3>(x,y,z) {}
208 #ifdef __CUDACC__
209  inline __both__ vec3a_t(const int3 &v) : vec_t<T,3>(v) {};
210  inline __both__ vec3a_t(const uint3 &v) : vec_t<T,3>(v) {};
211  inline __both__ vec3a_t(const float3 &v) : vec_t<T,3>(v) {};
212  inline __both__ vec3a_t(const int4 v) : vec_t<T,3>(v) {};
213  inline __both__ vec3a_t(const uint4 v) : vec_t<T,3>(v) {};
214  inline __both__ vec3a_t(const float4 v) : vec_t<T,3>(v) {};
215 #endif
216 
217  template<typename OT>
218  inline vec3a_t(const vec_t<OT,3> &v) : vec_t<T,3>(v.x,v.y,v.z) {}
219 
220  T a;
221  // add one elemnet for 'forced' alignment
222  };
223 
224  // ------------------------------------------------------------------
225  // vec4
226  // ------------------------------------------------------------------
227  template<typename T>
228  struct OWL_INTERFACE vec_t<T,4> {
229  enum { dims = 4 };
230  typedef T scalar_t;
231 
232  inline __both__ vec_t() {}
233 
234  inline __both__ vec_t(const T &t)
235  : x(t), y(t), z(t), w(t)
236  {}
237  inline __both__ vec_t(const vec_t<T,3> &xyz, const T &_w)
238  : x(xyz.x), y(xyz.y), z(xyz.z), w(_w)
239  {}
240  inline __both__ vec_t(const T &_x, const T &_y, const T &_z, const T &_w)
241  : x(_x), y(_y), z(_z), w(_w)
242  {}
243 
244 #ifdef __CUDACC__
245  inline __both__ vec_t(const float4 &v)
246  : x(v.x), y(v.y), z(v.z), w(v.w)
247  {}
248  inline __both__ vec_t(const int4 &v)
249  : x(v.x), y(v.y), z(v.z), w(v.w)
250  {}
251  inline __both__ vec_t(const uint4 &v)
252  : x(v.x), y(v.y), z(v.z), w(v.w)
253  {}
254  inline __both__ operator float4() const { return make_float4(x,y,z,w); }
255  inline __both__ operator uint4() const { return make_uint4(x,y,z,w); }
256  inline __both__ operator int4() const { return make_int4(x,y,z,w); }
257 #endif
258 
259  template<typename OT>
260  inline __both__ explicit vec_t(const vec_t<OT,4> &o)
261  : x(o.x), y(o.y), z(o.z), w(o.w)
262  {}
263  inline __both__ vec_t(const vec_t<T,4> &o) : x(o.x), y(o.y), z(o.z), w(o.w) {}
264 
266  inline __both__ vec_t<T,4> &operator=(const vec_t<T,4> &other) {
267  this->x = other.x;
268  this->y = other.y;
269  this->z = other.z;
270  this->w = other.w;
271  return *this;
272  }
273 
274  inline __both__ T &operator[](size_t dim) { return (&x)[dim]; }
275  inline __both__ const T &operator[](size_t dim) const { return (&x)[dim]; }
276 
277  template<typename OT, typename Lambda>
278  static inline __both__ vec_t<T,4> make_from(const vec_t<OT,4> &v,
279  const Lambda &lambda)
280  { return vec_t<T,4>(lambda(v.x),lambda(v.y),lambda(v.z),lambda(v.w)); }
281 
282  T x, y, z, w;
283  };
284 
285  template<typename T>
287  : x(v.x), y(v.y), z(v.z)
288  {}
289 
290  // =======================================================
291  // default functions
292  // =======================================================
293 
294  template<typename T>
295  inline __both__ typename long_type_of<T>::type area(const vec_t<T,2> &v)
296  { return (typename long_type_of<T>::type)(v.x)*(typename long_type_of<T>::type)(v.y); }
297 
298 
299  template<typename T>
301  { return
302  (typename long_type_of<T>::type)(v.x)*
303  (typename long_type_of<T>::type)(v.y)*
304  (typename long_type_of<T>::type)(v.z);
305  }
306 
307  template<typename T>
309  { return
310  (typename long_type_of<T>::type)(v.x)*
311  (typename long_type_of<T>::type)(v.y)*
312  (typename long_type_of<T>::type)(v.z)*
313  (typename long_type_of<T>::type)(v.w);
314  }
315 
316  template<typename T>
317  inline __both__ typename long_type_of<T>::type area(const vec_t<T,3> &v)
318  { return
319  T(2)*((typename long_type_of<T>::type)(v.x)*v.y+
320  (typename long_type_of<T>::type)(v.y)*v.z+
321  (typename long_type_of<T>::type)(v.z)*v.x);
322  }
323 
324 
325 
327  template<typename T>
328  inline __both__ vec_t<T,3> cross(const vec_t<T,3> &a, const vec_t<T,3> &b)
329  {
330  return vec_t<T,3>(a.y*b.z-b.y*a.z,
331  a.z*b.x-b.z*a.x,
332  a.x*b.y-b.x*a.y);
333  }
334 
336  template<typename T>
337  inline __both__ T dot(const vec_t<T,3> &a, const vec_t<T,3> &b)
338  {
339  return a.x*b.x + a.y*b.y + a.z*b.z;
340  }
341 
343  template<typename T>
345  {
346  return v * owl::common::polymorphic::rsqrt(dot(v,v));
347  }
348 
350  template<typename T>
351  inline __both__ T length(const vec_t<T,3> &v)
352  {
353  return owl::common::polymorphic::sqrt(dot(v,v));
354  }
355 
356  template<typename T>
357  inline __owl_host std::ostream &operator<<(std::ostream &o, const vec_t<T,1> &v)
358  {
359  o << "(" << v.x << ")";
360  return o;
361  }
362 
363  template<typename T>
364  inline __owl_host std::ostream &operator<<(std::ostream &o, const vec_t<T,2> &v)
365  {
366  o << "(" << v.x << "," << v.y << ")";
367  return o;
368  }
369 
370  template<typename T>
371  inline __owl_host std::ostream &operator<<(std::ostream &o, const vec_t<T,3> &v)
372  {
373  o << "(" << v.x << "," << v.y << "," << v.z << ")";
374  return o;
375  }
376 
377  template<typename T>
378  inline __owl_host std::ostream &operator<<(std::ostream &o, const vec_t<T,4> &v)
379  {
380  o << "(" << v.x << "," << v.y << "," << v.z << "," << v.w << ")";
381  return o;
382  }
383 
384  // =======================================================
385  // default instantiations
386  // =======================================================
387 
388 #define _define_vec_types(T,t) \
389  using vec2##t = vec_t<T,2>; \
390  using vec3##t = vec_t<T,3>; \
391  using vec4##t = vec_t<T,4>; \
392  using vec3##t##a = vec3a_t<T>; \
393 
394  _define_vec_types(int8_t ,c);
395  _define_vec_types(int16_t ,s);
396  _define_vec_types(int32_t ,i);
397  _define_vec_types(int64_t ,l);
398  _define_vec_types(uint8_t ,uc);
399  _define_vec_types(uint16_t,us);
400  _define_vec_types(uint32_t,ui);
401  _define_vec_types(uint64_t,ul);
403  _define_vec_types(double,d);
404 
405 #undef _define_vec_types
406 
407  } // ::owl::common
408 
409  using namespace owl::common;
410 } // ::owl
411 
412 // comparison operators
413 #include "vec/compare.h"
414 #include "vec/functors.h"
415 #include "vec/rotate.h"
416 
owl::common::BinaryOpResultType< int, double >::type
double type
Definition: vec.h:47
OWL_INTERFACE
#define OWL_INTERFACE
Definition: owl-common.h:63
owl::common::vec_t< T, 4 >::z
T z
Definition: vec.h:282
__owl_host
#define __owl_host
Definition: owl-common.h:99
owl::common::long_type_of< uint32_t >::type
uint64_t type
Definition: vec.h:30
owl::common::vec_t< T, 3 >::z
T z
Definition: vec.h:194
owl::common::cross
__both__ vec_t< T, 3 > cross(const vec_t< T, 3 > &a, const vec_t< T, 3 > &b)
Definition: vec.h:328
owl::common::vec_t< T, 1 >::vec_t
__both__ vec_t()
Definition: vec.h:61
owl::common::vec_t< T, 1 >::operator[]
__both__ T & operator[](size_t dim)
Definition: vec.h:74
owl::common::operator<<
std::ostream & operator<<(std::ostream &cout, const AffineSpaceT< L > &m)
Definition: AffineSpace.h:153
functors.h
owl::common::vec_t< T, 2 >::vec_t
__both__ vec_t(const vec_t< OT, 2 > &o)
Definition: vec.h:127
owl::common::vec_t< T, 4 >::operator=
__both__ vec_t< T, 4 > & operator=(const vec_t< T, 4 > &other)
Definition: vec.h:266
owl::common::BinaryOpResultType< int, float >::type
float type
Definition: vec.h:42
owl::common::BinaryOpResultType< double, unsigned int >::type
double type
Definition: vec.h:50
owl::common::BinaryOpResultType< double, int >::type
double type
Definition: vec.h:48
owl::common::vec_t< T, 3 >::y
T y
Definition: vec.h:194
owl::common::vec_t< T, 3 >::vec_t
__both__ vec_t(const T &t)
Definition: vec.h:148
owl::common::vec_t< T, 1 >::operator=
__both__ vec_t< T, 1 > & operator=(const vec_t< T, 1 > &other)
Definition: vec.h:65
owl::common::vec_t< T, 3 >::vec_t
__both__ vec_t(const vec_t< OT, 3 > &o)
Definition: vec.h:173
owl::common::vec_t< T, 2 >::y
T y
Definition: vec.h:133
owl::common::vec_t< T, 3 >::vec_t
__both__ vec_t()
Definition: vec.h:147
owl::common::vec_t< T, 2 >
Definition: vec.h:96
compare.h
owl::common::vec_t< T, 3 >::operator[]
__both__ const T & operator[](size_t dim) const
Definition: vec.h:187
rotate.h
owl::common::vec_t< T, 2 >::scalar_t
T scalar_t
Definition: vec.h:98
owl::common::vec_t< T, 2 >::vec_t
__both__ vec_t(const T &x, const T &y)
Definition: vec.h:102
owl::common::vec_t< T, 1 >
Definition: vec.h:57
owl::common::vec_t< T, 2 >::t
T t
Definition: vec.h:134
owl::common::vec_t< T, 1 >::x
T x
just to allow all vec types to use x,y,z,w,...
Definition: vec.h:88
owl::common::vec_t< T, 4 >::operator[]
__both__ const T & operator[](size_t dim) const
Definition: vec.h:275
owl::common::vec_t< T, 4 >::vec_t
__both__ vec_t(const T &_x, const T &_y, const T &_z, const T &_w)
Definition: vec.h:240
owl::common::vec_t< T, 3 >::vec_t
__both__ vec_t(const T &_x, const T &_y, const T &_z)
Definition: vec.h:149
owl::common::vec_t< T, 4 >::vec_t
__both__ vec_t(const T &t)
Definition: vec.h:234
owl::common::vec_t< T, 3 >::operator=
__both__ vec_t< T, 3 > & operator=(const vec_t< T, 3 > &other)
Definition: vec.h:179
owl::common::vec_t< T, 1 >::vec_t
__both__ vec_t(const T &v)
Definition: vec.h:62
owl::common::vec_t< T, 4 >::w
T w
Definition: vec.h:282
owl::common::vec_t< T, 2 >::operator=
__both__ vec_t< T, 2 > & operator=(const vec_t< T, 2 > &other)
Definition: vec.h:119
owl::common::vec_t< T, 4 >::x
T x
Definition: vec.h:282
owl::common::vec_t< T, 3 >::w
T w
Definition: vec.h:196
owl::common::vec_t< T, 3 >::t
T t
Definition: vec.h:195
owl::common::vec_t
Definition: vec.h:33
owl::common::vec_t< T, 2 >::operator[]
__both__ T & operator[](size_t dim)
Definition: vec.h:129
owl::common::vec_t< T, 1 >::scalar_t
T scalar_t
Definition: vec.h:59
owl::common::vec_t< T, 4 >::scalar_t
T scalar_t
Definition: vec.h:230
owl::common::polymorphic::sqrt
__both__ float sqrt(const float f)
Definition: owl-common.h:194
owl::common::vec_t< T, 3 >::yzx
__both__ vec_t< T, 3 > yzx() const
Definition: vec.h:176
owl::common::polymorphic::rsqrt
__both__ float rsqrt(const float f)
Definition: owl-common.h:198
owl::common::vec_t< T, 1 >::operator[]
__both__ const T & operator[](size_t dim) const
Definition: vec.h:79
owl::common::vec_t< T, 3 >
Definition: vec.h:143
owl-common.h
owl::common::area
__both__ long_type_of< T >::type area(const box_t< vec_t< T, 2 >> &b)
Definition: box.h:170
owl::common::vec_t< T, 4 >::y
T y
Definition: vec.h:282
owl::common
Definition: array2D.h:22
owl::common::BinaryOpResultType< float, unsigned int >::type
float type
Definition: vec.h:45
owl::common::BinaryOpResultType
Definition: vec.h:36
owl::common::vec_t< T, 1 >::vec_t
__both__ vec_t(const vec_t< OT, 1 > &o)
Definition: vec.h:72
owl::common::long_type_of::type
T type
Definition: vec.h:28
owl::common::vec_t< T, 4 >::vec_t
__both__ vec_t(const vec_t< T, 3 > &xyz, const T &_w)
Definition: vec.h:237
owl::common::vec_t< T, 4 >::vec_t
__both__ vec_t(const vec_t< OT, 4 > &o)
Definition: vec.h:260
owl::common::BinaryOpResultType< ScalarType, ScalarType >::type
ScalarType type
Definition: vec.h:40
owl::common::dot
__both__ T dot(const vec_t< T, 3 > &a, const vec_t< T, 3 > &b)
Definition: vec.h:337
owl::common::vec_t< T, 4 >::vec_t
__both__ vec_t(const vec_t< T, 4 > &o)
Definition: vec.h:263
owl::common::vec_t< T, 2 >::vec_t
__both__ vec_t(const T &t)
Definition: vec.h:101
constants.h
owl::common::BinaryOpResultType< float, int >::type
float type
Definition: vec.h:43
owl::common::BinaryOpResultType< unsigned int, double >::type
double type
Definition: vec.h:49
owl::common::vec_t< T, 1 >::v
T v
Definition: vec.h:87
owl
Definition: APIContext.cpp:36
OWL_ALIGN
#define OWL_ALIGN(alignment)
Definition: owl-common.h:135
owl::common::normalize
__both__ QuaternionT< T > normalize(const QuaternionT< T > &a)
Definition: Quaternion.h:103
owl::common::vec_t< T, 3 >::x
T x
Definition: vec.h:194
owl::common::vec_t< T, 3 >::make_from
static __both__ vec_t< T, 3 > make_from(const vec_t< OT, 3 > &v, const Lambda &lambda)
Definition: vec.h:190
owl::common::vec_t< T, 4 >::vec_t
__both__ vec_t()
Definition: vec.h:232
owl::common::long_type_of
Definition: vec.h:28
owl::common::vec_t< T, 2 >::v
T v
Definition: vec.h:135
owl::common::vec_t< T, 3 >::scalar_t
T scalar_t
Definition: vec.h:145
owl::common::vec_t< T, 4 >::operator[]
__both__ T & operator[](size_t dim)
Definition: vec.h:274
owl::common::BinaryOpResultType< unsigned int, float >::type
float type
Definition: vec.h:44
owl::common::vec_t< T, 3 >::operator[]
__both__ T & operator[](size_t dim)
Definition: vec.h:186
owl::common::long_type_of< int32_t >::type
int64_t type
Definition: vec.h:29
owl::common::vec_t< T, 2 >::vec_t
__both__ vec_t()
Definition: vec.h:100
owl::common::vec_t< T, 2 >::x
T x
Definition: vec.h:133
__both__
#define __both__
Definition: owl-common.h:102
owl::common::volume
__both__ long_type_of< T >::type volume(const box_t< vec_t< T, 3 >> &b)
Definition: box.h:183
owl::common::vec_t< T, 2 >::operator[]
__both__ const T & operator[](size_t dim) const
Definition: vec.h:130
owl::common::length
__both__ T length(const vec_t< T, 3 > &v)
Definition: vec.h:351
owl::common::vec_t< T, 4 >
Definition: vec.h:228
owl::common::_define_vec_types
_define_vec_types(int8_t, c)
owl::common::vec_t< T, 4 >::make_from
static __both__ vec_t< T, 4 > make_from(const vec_t< OT, 4 > &v, const Lambda &lambda)
Definition: vec.h:278