OWL
OptiX7 Wrapper Library
|
Go to the documentation of this file.
19 #include <type_traits>
28 template<
typename T,
int N>
inline __both__
32 template<
typename T,
int N>
inline __both__
36 template<
typename T,
int N>
inline __both__
42 template<
typename T,
int N>
inline __both__
52 {
return min(hi,max(lo,val)); }
56 {
return clamp(val,(T)0,hi); }
58 #define _define_float_functor(func) \
59 template<typename T> inline __both__ vec_t<T,2> func(const vec_t<T,2> &v) \
60 { return vec_t<T,2>(owl::common::func(v.x),owl::common::func(v.y)); } \
62 template<typename T> inline __both__ vec_t<T,3> func(const vec_t<T,3> &v) \
63 { return vec_t<T,3>(owl::common::func(v.x),owl::common::func(v.y),owl::common::func(v.z)); } \
65 template<typename T> inline __both__ vec_t<T,4> func(const vec_t<T,4> &v) \
66 { return vec_t<T,4>(owl::common::func(v.x),owl::common::func(v.y),owl::common::func(v.z),owl::common::func(v.w)); } \
74 #undef _define_float_functor
87 #define _define_binary_functor(fct) \
88 template<typename T> \
89 inline __both__ vec_t<T,1> fct(const vec_t<T,1> &a, const vec_t<T,1> &b) \
91 return vec_t<T,1>(fct(a.x,b.x)); \
94 template<typename T> \
95 inline __both__ vec_t<T,2> fct(const vec_t<T,2> &a, const vec_t<T,2> &b) \
97 return vec_t<T,2>(fct(a.x,b.x), \
101 template<typename T> \
102 inline __both__ vec_t<T,3> fct(const vec_t<T,3> &a, const vec_t<T,3> &b) \
104 return vec_t<T,3>(fct(a.x,b.x), \
109 template<typename T1, typename T2> \
110 inline __both__ vec_t<typename BinaryOpResultType<T1,T2>::type,3> \
111 fct(const vec_t<T1,3> &a, const vec_t<T2,3> &b) \
113 return vec_t<typename BinaryOpResultType<T1,T2>::type,3> \
119 template<typename T> \
120 inline __both__ vec_t<T,4> fct(const vec_t<T,4> &a, const vec_t<T,4> &b) \
122 return vec_t<T,4>(fct(a.x,b.x), \
132 #undef _define_binary_functor
142 #define _define_operator(op) \
144 template<typename T> \
145 inline __both__ vec_t<T,2> operator op(const vec_t<T,2> &a, \
146 const vec_t<T,2> &b) \
147 { return vec_t<T,2>(a.x op b.x, a.y op b.y); } \
149 template<typename T> \
150 inline __both__ vec_t<T,3> operator op(const vec_t<T,3> &a, \
151 const vec_t<T,3> &b) \
152 { return vec_t<T,3>(a.x op b.x, a.y op b.y, a.z op b.z); } \
154 template<typename T> \
155 inline __both__ vec_t<T,4> operator op(const vec_t<T,4> &a, \
156 const vec_t<T,4> &b) \
157 { return vec_t<T,4>(a.x op b.x,a.y op b.y,a.z op b.z,a.w op b.w); } \
160 template<typename T> \
161 inline __both__ vec_t<T,2> operator op(const vec_t<T,2> &a, \
163 { return vec_t<T,2>(a.x op b, a.y op b); } \
165 template<typename T1, typename T2> \
166 inline __both__ vec_t<typename BinaryOpResultType<T1,T2>::type,3> \
167 operator op(const vec_t<T1,3> &a, const T2 &b) \
168 { return vec_t<typename BinaryOpResultType<T1,T2>::type,3> \
169 (a.x op b, a.y op b, a.z op b); \
172 template<typename T> \
173 inline __both__ vec_t<T,4> operator op(const vec_t<T,4> &a, \
175 { return vec_t<T,4>(a.x op b, a.y op b, a.z op b, a.w op b); } \
178 template<typename T> \
179 inline __both__ vec_t<T,2> operator op(const T &a, \
180 const vec_t<T,2> &b) \
181 { return vec_t<T,2>(a op b.x, a op b.y); } \
183 template<typename T> \
184 inline __both__ vec_t<T,3> operator op(const T &a, \
185 const vec_t<T,3> &b) \
186 { return vec_t<T,3>(a op b.x, a op b.y, a op b.z); } \
188 template<typename T> \
189 inline __both__ vec_t<T,4> operator op(const T &a, \
190 const vec_t<T,4> &b) \
191 { return vec_t<T,4>(a op b.x, a op b.y, a op b.z, a op b.w); } \
200 #undef _define_operator
230 #define _define_op_assign_operator(operator_op,op) \
232 template<typename T, typename OT> \
233 inline __both__ vec_t<T,2> &operator_op(vec_t<T,2> &a, \
234 const vec_t<OT,2> &b) \
241 template<typename T, typename OT> \
242 inline __both__ vec_t<T,3> &operator_op(vec_t<T,3> &a, \
243 const vec_t<OT,3> &b) \
251 template<typename T, typename OT> \
252 inline __both__ vec_t<T,4> &operator_op(vec_t<T,4> &a, \
253 const vec_t<OT,4> &b) \
263 template<typename T, typename OT> \
264 inline __both__ vec_t<T,2> &operator_op(vec_t<T,2> &a, \
266 { a.x op (T)b; a.y op (T)b; return a; } \
268 template<typename T, typename OT> \
269 inline __both__ vec_t<T,3> &operator_op(vec_t<T,3> &a, \
271 { a.x op (T)b; a.y op (T)b; a.z op (T)b; return a; } \
273 template<typename T, typename OT> \
274 inline __both__ vec_t<T,4> &operator_op(vec_t<T,4> &a, \
276 { a.x op (T)b; a.y op (T)b; a.z op (T)b; a.w op (T)b; return a; } \
283 #undef _define_op_assign_operator
302 template<
typename T,
int N>
309 template<
typename T,
int N>
313 for (
int i=1;i<N;i++)
314 if ((v[i]) > (v[biggestDim])) biggestDim = i;
318 template<
typename T,
int N>
322 for (
int i=1;i<N;i++)
323 if ((v[i]) < (v[biggestDim])) biggestDim = i;
332 if (a.
x < b.
x)
return true;
333 if (a.
x == b.
x && a.
y < b.
y)
return true;
334 if (a.
x == b.
x && a.
y == b.
y && a.
z < b.
z)
return true;
345 int r = unsigned(i)*13*17 + 0x234235;
346 int g = unsigned(i)*7*3*5 + 0x773477;
347 int b = unsigned(i)*11*19 + 0x223766;
348 return vec3f((r&255)/255.f,
356 unsigned int r = (
unsigned int)(idx*13*17 + 0x234235);
357 unsigned int g = (
unsigned int)(idx*7*3*5 + 0x773477);
358 unsigned int b = (
unsigned int)(idx*11*19 + 0x223766);
359 return vec3f((r&255)/255.f,
372 inline __both__ vec2f
sqrt(
const vec2f v) {
return vec2f(sqrtf(v.x),sqrtf(v.y)); }
373 inline __both__ vec3f
sqrt(
const vec3f v) {
return vec3f(sqrtf(v.x),sqrtf(v.y),sqrtf(v.z)); }
374 inline __both__ vec4f
sqrt(
const vec4f v) {
return vec4f(sqrtf(v.x),sqrtf(v.y),sqrtf(v.z),sqrtf(v.w)); }
__both__ float sqrt(const float v)
Definition: functors.h:371
__both__ T reduce_min(const vec_t< T, 1 > &v)
Definition: functors.h:287
__both__ vec_t< T, 3 > madd(const vec_t< T, N > &a, const vec_t< T, N > &b, const vec_t< T, N > &c)
Definition: functors.h:303
__both__ int arg_min(const vec_t< T, N > &v)
Definition: functors.h:319
__both__ LinearSpace3< T > clamp(const LinearSpace3< T > &space)
Definition: LinearSpace.h:346
#define _define_binary_functor(fct)
__both__ T abs(const QuaternionT< T > &a)
Definition: Quaternion.h:101
__both__ float saturate(const float &f)
Definition: owl-common.h:160
__both__ auto lt(const vec_t< T, 2 > &a, const vec_t< T, 2 > &b) -> vec_t< decltype(a.x< b.x), 2 >
Definition: compare.h:117
_define_float_functor(rcp) _define_float_functor(sin) _define_float_functor(cos) _define_float_functor(abs) _define_float_functor(saturate) _define_binary_functor(divRoundUp) _define_binary_functor(min) _define_binary_functor(max) _define_operator(*)
__both__ bool any_less_than(const vec_t< T, N > &a, const vec_t< T, N > &b)
Definition: functors.h:29
__both__ bool all(const vec_t< T, N > &a)
Definition: compare.h:167
__both__ auto ge(const vec_t< T, N > &a, const vec_t< T, N > &b) -> decltype(nt(lt(a, b)))
Definition: compare.h:154
T x
just to allow all vec types to use x,y,z,w,...
Definition: vec.h:88
AffineSpaceT< L > operator-(const AffineSpaceT< L > &a)
Definition: AffineSpace.h:116
__both__ vec3f randomColor(int i)
Definition: functors.h:343
__both__ int32_t divRoundUp(int32_t a, int32_t b)
Definition: owl-common.h:168
__both__ T reduce_max(const vec_t< T, 2 > &v)
Definition: functors.h:295
__both__ bool all_less_than(const vec_t< T, N > &a, const vec_t< T, N > &b)
Definition: functors.h:33
__both__ auto gt(const vec_t< T, N > &a, const vec_t< T, N > &b) -> decltype(lt(b, a))
Definition: compare.h:145
__both__ bool operator<(const vec_t< T, 3 > &a, const vec_t< T, 3 > &b)
Definition: functors.h:330
_define_op_assign_operator(operator*=, *=)
AffineSpaceT< L > operator+(const AffineSpaceT< L > &a)
Definition: AffineSpace.h:117
__both__ bool any_greater_or_equal(const vec_t< T, N > &a, const vec_t< T, N > &b)
Definition: functors.h:43
AffineSpaceT< L > rcp(const AffineSpaceT< L > &a)
Definition: AffineSpace.h:118
Definition: APIContext.cpp:36
__both__ bool any_greater_than(const vec_t< T, N > &a, const vec_t< T, N > &b)
Definition: functors.h:37
__both__ int arg_max(const vec_t< T, N > &v)
Definition: functors.h:310
#define __both__
Definition: owl-common.h:102
__both__ bool any(const vec_t< T, N > &a)
Definition: compare.h:163