OpenVDB  9.0.0
Types.h
Go to the documentation of this file.
1 // Copyright Contributors to the OpenVDB Project
2 // SPDX-License-Identifier: MPL-2.0
3 
4 #ifndef OPENVDB_TYPES_HAS_BEEN_INCLUDED
5 #define OPENVDB_TYPES_HAS_BEEN_INCLUDED
6 
7 #include "version.h"
8 #include "Platform.h"
9 #include "TypeList.h" // backwards compat
10 
11 #ifdef OPENVDB_USE_IMATH_HALF
12 #ifdef OPENVDB_IMATH_VERSION
13 #include <Imath/half.h>
14 #else
15 #include <OpenEXR/half.h>
16 #endif
17 namespace openvdb {
19 namespace OPENVDB_VERSION_NAME {
20 namespace math {
21 using half = half;
22 }}}
23 #else
24 #include <openvdb/math/Half.h>
25 namespace openvdb {
27 namespace OPENVDB_VERSION_NAME {
28 namespace math {
30 }}}
31 #endif
32 
33 #include <openvdb/math/Math.h>
34 #include <openvdb/math/BBox.h>
35 #include <openvdb/math/Quat.h>
36 #include <openvdb/math/Vec2.h>
37 #include <openvdb/math/Vec3.h>
38 #include <openvdb/math/Vec4.h>
39 #include <openvdb/math/Mat3.h>
40 #include <openvdb/math/Mat4.h>
41 #include <openvdb/math/Coord.h>
42 #include <cstdint>
43 #include <memory>
44 #include <type_traits>
45 
46 
47 namespace openvdb {
49 namespace OPENVDB_VERSION_NAME {
50 
51 // One-dimensional scalar types
52 using Index32 = uint32_t;
53 using Index64 = uint64_t;
54 using Index = Index32;
55 using Int16 = int16_t;
56 using Int32 = int32_t;
57 using Int64 = int64_t;
58 using Int = Int32;
59 using Byte = unsigned char;
60 using Real = double;
61 
62 // Two-dimensional vector types
67 using math::Vec2i;
68 using math::Vec2s;
69 using math::Vec2d;
70 
71 // Three-dimensional vector types
78 using math::Vec3i;
79 using math::Vec3s;
80 using math::Vec3d;
81 
82 using math::Coord;
83 using math::CoordBBox;
85 
86 // Four-dimensional vector types
91 using math::Vec4i;
92 using math::Vec4s;
93 using math::Vec4d;
94 
95 // Three-dimensional matrix types
97 using math::Mat3s;
98 using math::Mat3d;
99 
100 // Four-dimensional matrix types
102 using math::Mat4s;
103 using math::Mat4d;
104 
105 // Quaternions
107 using math::Quats;
108 using math::Quatd;
109 
110 // Dummy type for a voxel with a binary mask value, e.g. the active state
111 class ValueMask {};
112 
113 // Use STL shared pointers from OpenVDB 4 on.
114 template<typename T> using SharedPtr = std::shared_ptr<T>;
115 template<typename T> using WeakPtr = std::weak_ptr<T>;
116 
117 /// @brief Return a new shared pointer that points to the same object
118 /// as the given pointer but with possibly different <TT>const</TT>-ness.
119 /// @par Example:
120 /// @code
121 /// FloatGrid::ConstPtr grid = ...;
122 /// FloatGrid::Ptr nonConstGrid = ConstPtrCast<FloatGrid>(grid);
123 /// FloatGrid::ConstPtr constGrid = ConstPtrCast<const FloatGrid>(nonConstGrid);
124 /// @endcode
125 template<typename T, typename U> inline SharedPtr<T>
126 ConstPtrCast(const SharedPtr<U>& ptr) { return std::const_pointer_cast<T, U>(ptr); }
127 
128 /// @brief Return a new shared pointer that is either null or points to
129 /// the same object as the given pointer after a @c dynamic_cast.
130 /// @par Example:
131 /// @code
132 /// GridBase::ConstPtr grid = ...;
133 /// FloatGrid::ConstPtr floatGrid = DynamicPtrCast<const FloatGrid>(grid);
134 /// @endcode
135 template<typename T, typename U> inline SharedPtr<T>
136 DynamicPtrCast(const SharedPtr<U>& ptr) { return std::dynamic_pointer_cast<T, U>(ptr); }
137 
138 /// @brief Return a new shared pointer that points to the same object
139 /// as the given pointer after a @c static_cast.
140 /// @par Example:
141 /// @code
142 /// FloatGrid::Ptr floatGrid = ...;
143 /// GridBase::Ptr grid = StaticPtrCast<GridBase>(floatGrid);
144 /// @endcode
145 template<typename T, typename U> inline SharedPtr<T>
146 StaticPtrCast(const SharedPtr<U>& ptr) { return std::static_pointer_cast<T, U>(ptr); }
147 
148 
149 ////////////////////////////////////////
150 
151 
152 /// @brief Integer wrapper, required to distinguish PointIndexGrid and
153 /// PointDataGrid from Int32Grid and Int64Grid
154 /// @note @c Kind is a dummy parameter used to create distinct types.
155 template<typename IntType_, Index Kind>
157 {
158  static_assert(std::is_integral<IntType_>::value, "PointIndex requires an integer value type");
159 
160  using IntType = IntType_;
161 
162  PointIndex(IntType i = IntType(0)): mIndex(i) {}
163 
164  /// Explicit type conversion constructor
165  template<typename T> explicit PointIndex(T i): mIndex(static_cast<IntType>(i)) {}
166 
167  operator IntType() const { return mIndex; }
168 
169  /// Needed to support the <tt>(zeroVal<PointIndex>() + val)</tt> idiom.
170  template<typename T>
171  PointIndex operator+(T x) { return PointIndex(mIndex + IntType(x)); }
172 
173 private:
174  IntType mIndex;
175 };
176 
177 
180 
183 
184 
185 ////////////////////////////////////////
186 
187 
188 /// @brief Helper metafunction used to determine if the first template
189 /// parameter is a specialization of the class template given in the second
190 /// template parameter
191 template <typename T, template <typename...> class Template>
192 struct IsSpecializationOf: public std::false_type {};
193 
194 template <typename... Args, template <typename...> class Template>
195 struct IsSpecializationOf<Template<Args...>, Template>: public std::true_type {};
196 
197 
198 ////////////////////////////////////////
199 
200 
204 struct VecTraits
205 {
206  static const bool IsVec = true;
207  static const int Size = T::size;
208  using ElementType = typename T::ValueType;
209 };
210 
211 template<typename T>
212 struct VecTraits<T, false>
213 {
214  static const bool IsVec = false;
215  static const int Size = 1;
216  using ElementType = T;
217 };
218 
221 {
222  static const bool IsQuat = true;
223  static const int Size = T::size;
224  using ElementType = typename T::ValueType;
225 };
226 
227 template<typename T>
228 struct QuatTraits<T, false>
229 {
230  static const bool IsQuat = false;
231  static const int Size = 1;
232  using ElementType = T;
233 };
234 
237 struct MatTraits
238 {
239  static const bool IsMat = true;
240  static const int Size = T::size;
241  using ElementType = typename T::ValueType;
242 };
243 
244 template<typename T>
245 struct MatTraits<T, false>
246 {
247  static const bool IsMat = false;
248  static const int Size = 1;
249  using ElementType = T;
250 };
251 
252 template<typename T, bool = VecTraits<T>::IsVec ||
256 {
257  static const bool IsVec = VecTraits<T>::IsVec;
258  static const bool IsQuat = QuatTraits<T>::IsQuat;
259  static const bool IsMat = MatTraits<T>::IsMat;
260  static const bool IsScalar = false;
261  static const int Size = T::size;
262  static const int Elements = IsMat ? Size*Size : Size;
263  using ElementType = typename T::ValueType;
264 };
265 
266 template<typename T>
267 struct ValueTraits<T, false>
268 {
269  static const bool IsVec = false;
270  static const bool IsQuat = false;
271  static const bool IsMat = false;
272  static const bool IsScalar = true;
273  static const int Size = 1;
274  static const int Elements = 1;
275  using ElementType = T;
276 };
277 
278 
279 ////////////////////////////////////////
280 
281 
282 /// @brief CanConvertType<FromType, ToType>::value is @c true if a value
283 /// of type @a ToType can be constructed from a value of type @a FromType.
284 template<typename FromType, typename ToType>
286 
287 // Specializations for vector types, which can be constructed from values
288 // of their own ValueTypes (or values that can be converted to their ValueTypes),
289 // but only explicitly
290 template<typename T> struct CanConvertType<T, math::Vec2<T> > { enum { value = true }; };
291 template<typename T> struct CanConvertType<T, math::Vec3<T> > { enum { value = true }; };
292 template<typename T> struct CanConvertType<T, math::Vec4<T> > { enum { value = true }; };
293 template<typename T> struct CanConvertType<math::Vec2<T>, math::Vec2<T> > { enum {value = true}; };
294 template<typename T> struct CanConvertType<math::Vec3<T>, math::Vec3<T> > { enum {value = true}; };
295 template<typename T> struct CanConvertType<math::Vec4<T>, math::Vec4<T> > { enum {value = true}; };
296 template<typename T0, typename T1>
297 struct CanConvertType<T0, math::Vec2<T1> > { enum { value = CanConvertType<T0, T1>::value }; };
298 template<typename T0, typename T1>
299 struct CanConvertType<T0, math::Vec3<T1> > { enum { value = CanConvertType<T0, T1>::value }; };
300 template<typename T0, typename T1>
301 struct CanConvertType<T0, math::Vec4<T1> > { enum { value = CanConvertType<T0, T1>::value }; };
302 template<> struct CanConvertType<PointIndex32, PointDataIndex32> { enum {value = true}; };
303 template<> struct CanConvertType<PointDataIndex32, PointIndex32> { enum {value = true}; };
304 template<typename T>
306 template<typename T>
308 
309 
310 ////////////////////////////////////////
311 
312 
313 /// @brief CopyConstness<T1, T2>::Type is either <tt>const T2</tt>
314 /// or @c T2 with no @c const qualifier, depending on whether @c T1 is @c const.
315 /// @details For example,
316 /// - CopyConstness<int, int>::Type is @c int
317 /// - CopyConstness<int, const int>::Type is @c int
318 /// - CopyConstness<const int, int>::Type is <tt>const int</tt>
319 /// - CopyConstness<const int, const int>::Type is <tt>const int</tt>
320 template<typename FromType, typename ToType> struct CopyConstness {
321  using Type = typename std::remove_const<ToType>::type;
322 };
323 
324 /// @cond OPENVDB_DOCS_INTERNAL
325 template<typename FromType, typename ToType> struct CopyConstness<const FromType, ToType> {
326  using Type = const ToType;
327 };
328 /// @endcond
329 
330 
331 ////////////////////////////////////////
332 
333 
334 // Add new items to the *end* of this list, and update NUM_GRID_CLASSES.
335 enum GridClass {
340 };
342 
343 static const Real LEVEL_SET_HALF_WIDTH = 3;
344 
345 /// The type of a vector determines how transforms are applied to it:
346 /// <dl>
347 /// <dt><b>Invariant</b>
348 /// <dd>Does not transform (e.g., tuple, uvw, color)
349 ///
350 /// <dt><b>Covariant</b>
351 /// <dd>Apply inverse-transpose transformation: @e w = 0, ignores translation
352 /// (e.g., gradient/normal)
353 ///
354 /// <dt><b>Covariant Normalize</b>
355 /// <dd>Apply inverse-transpose transformation: @e w = 0, ignores translation,
356 /// vectors are renormalized (e.g., unit normal)
357 ///
358 /// <dt><b>Contravariant Relative</b>
359 /// <dd>Apply "regular" transformation: @e w = 0, ignores translation
360 /// (e.g., displacement, velocity, acceleration)
361 ///
362 /// <dt><b>Contravariant Absolute</b>
363 /// <dd>Apply "regular" transformation: @e w = 1, vector translates (e.g., position)
364 /// </dl>
365 enum VecType {
371 };
373 
374 
375 /// Specify how grids should be merged during certain (typically multithreaded) operations.
376 /// <dl>
377 /// <dt><b>MERGE_ACTIVE_STATES</b>
378 /// <dd>The output grid is active wherever any of the input grids is active.
379 ///
380 /// <dt><b>MERGE_NODES</b>
381 /// <dd>The output grid's tree has a node wherever any of the input grids' trees
382 /// has a node, regardless of any active states.
383 ///
384 /// <dt><b>MERGE_ACTIVE_STATES_AND_NODES</b>
385 /// <dd>The output grid is active wherever any of the input grids is active,
386 /// and its tree has a node wherever any of the input grids' trees has a node.
387 /// </dl>
392 };
393 
394 
395 ////////////////////////////////////////
396 
397 
398 template<typename T> const char* typeNameAsString() { return typeid(T).name(); }
399 template<> inline const char* typeNameAsString<bool>() { return "bool"; }
400 template<> inline const char* typeNameAsString<ValueMask>() { return "mask"; }
401 template<> inline const char* typeNameAsString<math::half>() { return "half"; }
402 template<> inline const char* typeNameAsString<float>() { return "float"; }
403 template<> inline const char* typeNameAsString<double>() { return "double"; }
404 template<> inline const char* typeNameAsString<int8_t>() { return "int8"; }
405 template<> inline const char* typeNameAsString<uint8_t>() { return "uint8"; }
406 template<> inline const char* typeNameAsString<int16_t>() { return "int16"; }
407 template<> inline const char* typeNameAsString<uint16_t>() { return "uint16"; }
408 template<> inline const char* typeNameAsString<int32_t>() { return "int32"; }
409 template<> inline const char* typeNameAsString<uint32_t>() { return "uint32"; }
410 template<> inline const char* typeNameAsString<int64_t>() { return "int64"; }
411 template<> inline const char* typeNameAsString<Vec2i>() { return "vec2i"; }
412 template<> inline const char* typeNameAsString<Vec2s>() { return "vec2s"; }
413 template<> inline const char* typeNameAsString<Vec2d>() { return "vec2d"; }
414 template<> inline const char* typeNameAsString<Vec3U8>() { return "vec3u8"; }
415 template<> inline const char* typeNameAsString<Vec3U16>() { return "vec3u16"; }
416 template<> inline const char* typeNameAsString<Vec3i>() { return "vec3i"; }
417 template<> inline const char* typeNameAsString<Vec3f>() { return "vec3s"; }
418 template<> inline const char* typeNameAsString<Vec3d>() { return "vec3d"; }
419 template<> inline const char* typeNameAsString<Vec4i>() { return "vec4i"; }
420 template<> inline const char* typeNameAsString<Vec4f>() { return "vec4s"; }
421 template<> inline const char* typeNameAsString<Vec4d>() { return "vec4d"; }
422 template<> inline const char* typeNameAsString<std::string>() { return "string"; }
423 template<> inline const char* typeNameAsString<Mat3s>() { return "mat3s"; }
424 template<> inline const char* typeNameAsString<Mat3d>() { return "mat3d"; }
425 template<> inline const char* typeNameAsString<Mat4s>() { return "mat4s"; }
426 template<> inline const char* typeNameAsString<Mat4d>() { return "mat4d"; }
427 template<> inline const char* typeNameAsString<math::Quats>() { return "quats"; }
428 template<> inline const char* typeNameAsString<math::Quatd>() { return "quatd"; }
429 template<> inline const char* typeNameAsString<PointIndex32>() { return "ptidx32"; }
430 template<> inline const char* typeNameAsString<PointIndex64>() { return "ptidx64"; }
431 template<> inline const char* typeNameAsString<PointDataIndex32>() { return "ptdataidx32"; }
432 template<> inline const char* typeNameAsString<PointDataIndex64>() { return "ptdataidx64"; }
433 
434 
435 ////////////////////////////////////////
436 
437 
438 /// @brief This struct collects both input and output arguments to "grid combiner" functors
439 /// used with the tree::TypedGrid::combineExtended() and combine2Extended() methods.
440 /// AValueType and BValueType are the value types of the two grids being combined.
441 ///
442 /// @see openvdb/tree/Tree.h for usage information.
443 ///
444 /// Setter methods return references to this object, to facilitate the following usage:
445 /// @code
446 /// CombineArgs<float> args;
447 /// myCombineOp(args.setARef(aVal).setBRef(bVal).setAIsActive(true).setBIsActive(false));
448 /// @endcode
449 template<typename AValueType, typename BValueType = AValueType>
451 {
452 public:
453  using AValueT = AValueType;
454  using BValueT = BValueType;
455 
457  : mAValPtr(nullptr)
458  , mBValPtr(nullptr)
459  , mResultValPtr(&mResultVal)
460  , mAIsActive(false)
461  , mBIsActive(false)
462  , mResultIsActive(false)
463  {
464  }
465 
466  /// Use this constructor when the result value is stored externally.
467  CombineArgs(const AValueType& a, const BValueType& b, AValueType& result,
468  bool aOn = false, bool bOn = false)
469  : mAValPtr(&a)
470  , mBValPtr(&b)
471  , mResultValPtr(&result)
472  , mAIsActive(aOn)
473  , mBIsActive(bOn)
474  {
475  this->updateResultActive();
476  }
477 
478  /// Use this constructor when the result value should be stored in this struct.
479  CombineArgs(const AValueType& a, const BValueType& b, bool aOn = false, bool bOn = false)
480  : mAValPtr(&a)
481  , mBValPtr(&b)
482  , mResultValPtr(&mResultVal)
483  , mAIsActive(aOn)
484  , mBIsActive(bOn)
485  {
486  this->updateResultActive();
487  }
488 
489  /// Get the A input value.
490  const AValueType& a() const { return *mAValPtr; }
491  /// Get the B input value.
492  const BValueType& b() const { return *mBValPtr; }
493  //@{
494  /// Get the output value.
495  const AValueType& result() const { return *mResultValPtr; }
496  AValueType& result() { return *mResultValPtr; }
497  //@}
498 
499  /// Set the output value.
500  CombineArgs& setResult(const AValueType& val) { *mResultValPtr = val; return *this; }
501 
502  /// Redirect the A value to a new external source.
503  CombineArgs& setARef(const AValueType& a) { mAValPtr = &a; return *this; }
504  /// Redirect the B value to a new external source.
505  CombineArgs& setBRef(const BValueType& b) { mBValPtr = &b; return *this; }
506  /// Redirect the result value to a new external destination.
507  CombineArgs& setResultRef(AValueType& val) { mResultValPtr = &val; return *this; }
508 
509  /// @return true if the A value is active
510  bool aIsActive() const { return mAIsActive; }
511  /// @return true if the B value is active
512  bool bIsActive() const { return mBIsActive; }
513  /// @return true if the output value is active
514  bool resultIsActive() const { return mResultIsActive; }
515 
516  /// Set the active state of the A value.
517  CombineArgs& setAIsActive(bool b) { mAIsActive = b; updateResultActive(); return *this; }
518  /// Set the active state of the B value.
519  CombineArgs& setBIsActive(bool b) { mBIsActive = b; updateResultActive(); return *this; }
520  /// Set the active state of the output value.
521  CombineArgs& setResultIsActive(bool b) { mResultIsActive = b; return *this; }
522 
523 protected:
524  /// By default, the result value is active if either of the input values is active,
525  /// but this behavior can be overridden by calling setResultIsActive().
526  void updateResultActive() { mResultIsActive = mAIsActive || mBIsActive; }
527 
528  const AValueType* mAValPtr; // pointer to input value from A grid
529  const BValueType* mBValPtr; // pointer to input value from B grid
530  AValueType mResultVal; // computed output value (unused if stored externally)
531  AValueType* mResultValPtr; // pointer to either mResultVal or an external value
532  bool mAIsActive, mBIsActive; // active states of A and B values
533  bool mResultIsActive; // computed active state (default: A active || B active)
534 };
535 
536 
537 /// This struct adapts a "grid combiner" functor to swap the A and B grid values
538 /// (e.g., so that if the original functor computes a + 2 * b, the adapted functor
539 /// will compute b + 2 * a).
540 template<typename ValueType, typename CombineOp>
542 {
543  SwappedCombineOp(CombineOp& _op): op(_op) {}
544 
546  {
547  CombineArgs<ValueType> swappedArgs(args.b(), args.a(), args.result(),
548  args.bIsActive(), args.aIsActive());
549  op(swappedArgs);
550  }
551 
552  CombineOp& op;
553 };
554 
555 
556 ////////////////////////////////////////
557 
558 
559 /// @brief Tag dispatch class that distinguishes shallow copy constructors
560 /// from deep copy constructors
561 class ShallowCopy {};
562 /// @brief Tag dispatch class that distinguishes topology copy constructors
563 /// from deep copy constructors
564 class TopologyCopy {};
565 /// @brief Tag dispatch class that distinguishes constructors that deep copy
566 class DeepCopy {};
567 /// @brief Tag dispatch class that distinguishes constructors that steal
568 class Steal {};
569 /// @brief Tag dispatch class that distinguishes constructors during file input
570 class PartialCreate {};
571 
572 } // namespace OPENVDB_VERSION_NAME
573 } // namespace openvdb
574 
575 
576 #endif // OPENVDB_TYPES_HAS_BEEN_INCLUDED
ValueT value
Definition: GridBuilder.h:1287
General-purpose arithmetic and comparison routines, most of which accept arbitrary value types (or at...
A TypeList provides a compile time sequence of heterogeneous types which can be accessed,...
This struct collects both input and output arguments to "grid combiner" functors used with the tree::...
Definition: Types.h:451
CombineArgs & setResult(const AValueType &val)
Set the output value.
Definition: Types.h:500
bool bIsActive() const
Definition: Types.h:512
CombineArgs(const AValueType &a, const BValueType &b, AValueType &result, bool aOn=false, bool bOn=false)
Use this constructor when the result value is stored externally.
Definition: Types.h:467
bool mAIsActive
Definition: Types.h:532
AValueType * mResultValPtr
Definition: Types.h:531
void updateResultActive()
Definition: Types.h:526
const AValueType * mAValPtr
Definition: Types.h:528
AValueType mResultVal
Definition: Types.h:530
bool aIsActive() const
Definition: Types.h:510
CombineArgs & setResultRef(AValueType &val)
Redirect the result value to a new external destination.
Definition: Types.h:507
const AValueType & a() const
Get the A input value.
Definition: Types.h:490
CombineArgs & setBIsActive(bool b)
Set the active state of the B value.
Definition: Types.h:519
const BValueType * mBValPtr
Definition: Types.h:529
CombineArgs(const AValueType &a, const BValueType &b, bool aOn=false, bool bOn=false)
Use this constructor when the result value should be stored in this struct.
Definition: Types.h:479
CombineArgs & setARef(const AValueType &a)
Redirect the A value to a new external source.
Definition: Types.h:503
const BValueType & b() const
Get the B input value.
Definition: Types.h:492
CombineArgs & setAIsActive(bool b)
Set the active state of the A value.
Definition: Types.h:517
const AValueType & result() const
Get the output value.
Definition: Types.h:495
AValueType AValueT
Definition: Types.h:453
AValueType & result()
Definition: Types.h:496
bool resultIsActive() const
Definition: Types.h:514
CombineArgs & setBRef(const BValueType &b)
Redirect the B value to a new external source.
Definition: Types.h:505
bool mResultIsActive
Definition: Types.h:533
BValueType BValueT
Definition: Types.h:454
CombineArgs()
Definition: Types.h:456
CombineArgs & setResultIsActive(bool b)
Set the active state of the output value.
Definition: Types.h:521
Tag dispatch class that distinguishes constructors that deep copy.
Definition: Types.h:566
Tag dispatch class that distinguishes constructors during file input.
Definition: Types.h:570
Tag dispatch class that distinguishes shallow copy constructors from deep copy constructors.
Definition: Types.h:561
Tag dispatch class that distinguishes constructors that steal.
Definition: Types.h:568
Tag dispatch class that distinguishes topology copy constructors from deep copy constructors.
Definition: Types.h:564
Definition: Types.h:111
Signed (x, y, z) 32-bit integer coordinates.
Definition: Coord.h:25
3x3 matrix class.
Definition: Mat3.h:29
Definition: Quat.h:79
Definition: Vec2.h:24
Definition: Vec4.h:25
BBox< Coord > CoordBBox
Definition: NanoVDB.h:1658
Vec2< int32_t > Vec2i
Definition: Vec2.h:534
Mat4< float > Mat4s
Definition: Mat4.h:1367
Vec2< double > Vec2d
Definition: Vec2.h:537
Mat3< double > Mat3d
Definition: Mat3.h:848
Vec2< float > Vec2s
Definition: Vec2.h:536
Vec4< float > Vec4s
Definition: Vec4.h:565
Mat3< float > Mat3s
Definition: Mat3.h:847
Vec3< double > Vec3d
Definition: Vec3.h:668
Mat4< double > Mat4d
Definition: Mat4.h:1368
Vec4< int32_t > Vec4i
Definition: Vec4.h:563
Quat< double > Quatd
Definition: Quat.h:626
internal::half half
Definition: Types.h:29
Vec3< int32_t > Vec3i
Definition: Vec3.h:665
Vec4< double > Vec4d
Definition: Vec4.h:566
Quat< float > Quats
Definition: Quat.h:625
Vec3< float > Vec3s
Definition: Vec3.h:667
static const Real LEVEL_SET_HALF_WIDTH
Definition: Types.h:343
const char * typeNameAsString< uint8_t >()
Definition: Types.h:405
@ NUM_GRID_CLASSES
Definition: Types.h:341
const char * typeNameAsString< int32_t >()
Definition: Types.h:408
const char * typeNameAsString< PointIndex32 >()
Definition: Types.h:429
Index32 Index
Definition: Types.h:54
const char * typeNameAsString< float >()
Definition: Types.h:402
const char * typeNameAsString< ValueMask >()
Definition: Types.h:400
const char * typeNameAsString< Vec3d >()
Definition: Types.h:418
SharedPtr< T > StaticPtrCast(const SharedPtr< U > &ptr)
Return a new shared pointer that points to the same object as the given pointer after a static_cast.
Definition: Types.h:146
int16_t Int16
Definition: Types.h:55
SharedPtr< T > DynamicPtrCast(const SharedPtr< U > &ptr)
Return a new shared pointer that is either null or points to the same object as the given pointer aft...
Definition: Types.h:136
unsigned char Byte
Definition: Types.h:59
double Real
Definition: Types.h:60
const char * typeNameAsString< Vec4i >()
Definition: Types.h:419
GridClass
Definition: Types.h:335
@ GRID_FOG_VOLUME
Definition: Types.h:338
@ GRID_STAGGERED
Definition: Types.h:339
@ GRID_LEVEL_SET
Definition: Types.h:337
@ GRID_UNKNOWN
Definition: Types.h:336
int64_t Int64
Definition: Types.h:57
const char * typeNameAsString< PointDataIndex64 >()
Definition: Types.h:432
const char * typeNameAsString< Mat4s >()
Definition: Types.h:425
const char * typeNameAsString< Vec3U8 >()
Definition: Types.h:414
const char * typeNameAsString< int16_t >()
Definition: Types.h:406
const char * typeNameAsString< Vec3i >()
Definition: Types.h:416
Int32 Int
Definition: Types.h:58
const char * typeNameAsString< PointIndex64 >()
Definition: Types.h:430
std::weak_ptr< T > WeakPtr
Definition: Types.h:115
const char * typeNameAsString< uint16_t >()
Definition: Types.h:407
const char * typeNameAsString< Mat3d >()
Definition: Types.h:424
const char * typeNameAsString< Vec3U16 >()
Definition: Types.h:415
const char * typeNameAsString< Vec2s >()
Definition: Types.h:412
SharedPtr< T > ConstPtrCast(const SharedPtr< U > &ptr)
Return a new shared pointer that points to the same object as the given pointer but with possibly dif...
Definition: Types.h:126
const char * typeNameAsString< PointDataIndex32 >()
Definition: Types.h:431
const char * typeNameAsString< Vec4f >()
Definition: Types.h:420
const char * typeNameAsString()
Definition: Types.h:398
uint32_t Index32
Definition: Types.h:52
const char * typeNameAsString< Vec3f >()
Definition: Types.h:417
const char * typeNameAsString< bool >()
Definition: Types.h:399
const char * typeNameAsString< int64_t >()
Definition: Types.h:410
const char * typeNameAsString< double >()
Definition: Types.h:403
int32_t Int32
Definition: Types.h:56
uint64_t Index64
Definition: Types.h:53
const char * typeNameAsString< Vec4d >()
Definition: Types.h:421
const char * typeNameAsString< int8_t >()
Definition: Types.h:404
const char * typeNameAsString< Vec2d >()
Definition: Types.h:413
const char * typeNameAsString< Vec2i >()
Definition: Types.h:411
std::shared_ptr< T > SharedPtr
Definition: Types.h:114
MergePolicy
Definition: Types.h:388
@ MERGE_ACTIVE_STATES
Definition: Types.h:389
@ MERGE_NODES
Definition: Types.h:390
@ MERGE_ACTIVE_STATES_AND_NODES
Definition: Types.h:391
@ NUM_VEC_TYPES
Definition: Types.h:372
VecType
Definition: Types.h:365
@ VEC_CONTRAVARIANT_ABSOLUTE
Definition: Types.h:370
@ VEC_CONTRAVARIANT_RELATIVE
Definition: Types.h:369
@ VEC_COVARIANT
Definition: Types.h:367
@ VEC_COVARIANT_NORMALIZE
Definition: Types.h:368
@ VEC_INVARIANT
Definition: Types.h:366
const char * typeNameAsString< uint32_t >()
Definition: Types.h:409
const char * typeNameAsString< Mat3s >()
Definition: Types.h:423
const char * typeNameAsString< Mat4d >()
Definition: Types.h:426
Definition: Exceptions.h:13
CanConvertType<FromType, ToType>::value is true if a value of type ToType can be constructed from a v...
Definition: Types.h:285
CopyConstness<T1, T2>::Type is either const T2 or T2 with no const qualifier, depending on whether T1...
Definition: Types.h:320
typename std::remove_const< ToType >::type Type
Definition: Types.h:321
Helper metafunction used to determine if the first template parameter is a specialization of the clas...
Definition: Types.h:192
T ElementType
Definition: Types.h:249
Definition: Types.h:238
typename T::ValueType ElementType
Definition: Types.h:241
Integer wrapper, required to distinguish PointIndexGrid and PointDataGrid from Int32Grid and Int64Gri...
Definition: Types.h:157
PointIndex(T i)
Explicit type conversion constructor.
Definition: Types.h:165
PointIndex(IntType i=IntType(0))
Definition: Types.h:162
PointIndex operator+(T x)
Needed to support the (zeroVal<PointIndex>() + val) idiom.
Definition: Types.h:171
IntType_ IntType
Definition: Types.h:160
T ElementType
Definition: Types.h:232
Definition: Types.h:221
typename T::ValueType ElementType
Definition: Types.h:224
Definition: Types.h:542
SwappedCombineOp(CombineOp &_op)
Definition: Types.h:543
void operator()(CombineArgs< ValueType > &args)
Definition: Types.h:545
CombineOp & op
Definition: Types.h:552
T ElementType
Definition: Types.h:275
Definition: Types.h:256
typename T::ValueType ElementType
Definition: Types.h:263
T ElementType
Definition: Types.h:216
Definition: Types.h:205
typename T::ValueType ElementType
Definition: Types.h:208
#define OPENVDB_VERSION_NAME
The version namespace name for this library version.
Definition: version.h.in:116
#define OPENVDB_USE_VERSION_NAMESPACE
Definition: version.h.in:202