31 #ifndef OPENVDB_TYPES_HAS_BEEN_INCLUDED
32 #define OPENVDB_TYPES_HAS_BEEN_INCLUDED
36 #include <OpenEXR/half.h>
37 #include <openvdb/math/Math.h>
38 #include <openvdb/math/BBox.h>
39 #include <openvdb/math/Quat.h>
40 #include <openvdb/math/Vec2.h>
41 #include <openvdb/math/Vec3.h>
42 #include <openvdb/math/Vec4.h>
43 #include <openvdb/math/Mat3.h>
44 #include <openvdb/math/Mat4.h>
45 #include <openvdb/math/Coord.h>
46 #include <openvdb/math/Hermite.h>
47 #include <boost/type_traits/is_convertible.hpp>
48 #include <boost/type_traits/is_integral.hpp>
49 #include <boost/static_assert.hpp>
64 typedef unsigned char Byte;
119 template<
typename IntType_, Index Kind>
122 BOOST_STATIC_ASSERT(boost::is_integral<IntType_>::value);
128 operator IntType()
const {
return mIndex; }
150 static const bool IsVec =
false;
151 static const int Size = 1;
155 static const bool IsVec =
true;
156 static const int Size = 2;
160 static const bool IsVec =
true;
161 static const int Size = 3;
165 static const bool IsVec =
true;
166 static const int Size = 4;
183 template<
typename FromType,
typename ToType>
184 struct CanConvertType {
enum { value = boost::is_convertible<FromType, ToType>::value }; };
189 template<
typename T>
struct CanConvertType<T, math::Vec2<T> > {
enum { value =
true }; };
190 template<
typename T>
struct CanConvertType<T, math::Vec3<T> > {
enum { value =
true }; };
191 template<
typename T>
struct CanConvertType<T, math::Vec4<T> > {
enum { value =
true }; };
195 template<
typename T0,
typename T1>
197 template<
typename T0,
typename T1>
199 template<
typename T0,
typename T1>
201 template<>
struct CanConvertType<PointIndex32, PointDataIndex32> {
enum {value =
true}; };
202 template<>
struct CanConvertType<PointDataIndex32, PointIndex32> {
enum {value =
true}; };
285 template<>
inline const char* typeNameAsString<std::string>() {
return "string"; }
308 template<
typename AValueType,
typename BValueType = AValueType>
316 mAValPtr(NULL), mBValPtr(NULL), mResultValPtr(&mResultVal),
317 mAIsActive(false), mBIsActive(false), mResultIsActive(false)
321 CombineArgs(
const AValueType& a,
const BValueType& b, AValueType& result,
322 bool aOn =
false,
bool bOn =
false):
323 mAValPtr(&a), mBValPtr(&b), mResultValPtr(&result),
324 mAIsActive(aOn), mBIsActive(bOn)
325 { updateResultActive(); }
328 CombineArgs(
const AValueType& a,
const BValueType& b,
bool aOn =
false,
bool bOn =
false):
329 mAValPtr(&a), mBValPtr(&b), mResultValPtr(&mResultVal),
330 mAIsActive(aOn), mBIsActive(bOn)
331 { updateResultActive(); }
334 const AValueType&
a()
const {
return *mAValPtr; }
336 const BValueType&
b()
const {
return *mBValPtr; }
338 const AValueType& result()
const {
return *mResultValPtr; }
340 AValueType&
result() {
return *mResultValPtr; }
384 template<
typename ValueType,
typename CombineOp>
436 #define OPENVDB_START_THREADSAFE_STATIC_REFERENCE __pragma(warning(disable:1710))
437 #define OPENVDB_FINISH_THREADSAFE_STATIC_REFERENCE __pragma(warning(default:1710))
438 #define OPENVDB_START_THREADSAFE_STATIC_WRITE __pragma(warning(disable:1711))
439 #define OPENVDB_FINISH_THREADSAFE_STATIC_WRITE __pragma(warning(default:1711))
440 #define OPENVDB_START_THREADSAFE_STATIC_ADDRESS __pragma(warning(disable:1712))
441 #define OPENVDB_FINISH_THREADSAFE_STATIC_ADDRESS __pragma(warning(default:1712))
445 #define OPENVDB_START_NON_THREADSAFE_STATIC_REFERENCE __pragma(warning(disable:1710))
446 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_REFERENCE __pragma(warning(default:1710))
447 #define OPENVDB_START_NON_THREADSAFE_STATIC_WRITE __pragma(warning(disable:1711))
448 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_WRITE __pragma(warning(default:1711))
449 #define OPENVDB_START_NON_THREADSAFE_STATIC_ADDRESS __pragma(warning(disable:1712))
450 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_ADDRESS __pragma(warning(default:1712))
453 #define OPENVDB_THREADSAFE_STATIC_REFERENCE(CODE) \
454 __pragma(warning(disable:1710)); CODE; __pragma(warning(default:1710))
455 #define OPENVDB_THREADSAFE_STATIC_WRITE(CODE) \
456 __pragma(warning(disable:1711)); CODE; __pragma(warning(default:1711))
457 #define OPENVDB_THREADSAFE_STATIC_ADDRESS(CODE) \
458 __pragma(warning(disable:1712)); CODE; __pragma(warning(default:1712))
460 #else // GCC does not support these compiler warnings
462 #define OPENVDB_START_THREADSAFE_STATIC_REFERENCE
463 #define OPENVDB_FINISH_THREADSAFE_STATIC_REFERENCE
464 #define OPENVDB_START_THREADSAFE_STATIC_WRITE
465 #define OPENVDB_FINISH_THREADSAFE_STATIC_WRITE
466 #define OPENVDB_START_THREADSAFE_STATIC_ADDRESS
467 #define OPENVDB_FINISH_THREADSAFE_STATIC_ADDRESS
469 #define OPENVDB_START_NON_THREADSAFE_STATIC_REFERENCE
470 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_REFERENCE
471 #define OPENVDB_START_NON_THREADSAFE_STATIC_WRITE
472 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_WRITE
473 #define OPENVDB_START_NON_THREADSAFE_STATIC_ADDRESS
474 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_ADDRESS
476 #define OPENVDB_THREADSAFE_STATIC_REFERENCE(CODE) CODE
477 #define OPENVDB_THREADSAFE_STATIC_WRITE(CODE) CODE
478 #define OPENVDB_THREADSAFE_STATIC_ADDRESS(CODE) CODE
480 #endif // defined(__ICC)
482 #endif // OPENVDB_TYPES_HAS_BEEN_INCLUDED
int64_t Int64
Definition: Types.h:62
CombineArgs & setBRef(const BValueType &b)
Redirect the B value to a new external source.
Definition: Types.h:349
Int32 Int
Definition: Types.h:63
const char * typeNameAsString< Vec3d >()
Definition: Types.h:284
const char * typeNameAsString< Mat4d >()
Definition: Types.h:287
PointIndex(IntType i=IntType(0))
Definition: Types.h:126
AValueType mResultVal
Definition: Types.h:374
const char * typeNameAsString< float >()
Definition: Types.h:273
uint64_t Index64
Definition: Types.h:58
Vec4< double > Vec4d
Definition: Vec4.h:546
T ElementType
Definition: Types.h:152
int16_t Int16
Definition: Types.h:60
math::Vec4< Index32 > Vec4I
Definition: Types.h:91
Vec4< int32_t > Vec4i
Definition: Vec4.h:543
const char * typeNameAsString< PointDataIndex32 >()
Definition: Types.h:290
PointIndex operator+(T x)
Needed to support the (zeroVal
() + val) idiom. Definition: Types.h:132
Axis-aligned bounding box of signed integer coordinates.
Definition: Coord.h:229
math::Vec3< half > Vec3H
Definition: Types.h:80
AValueType AValueT
Definition: Types.h:312
bool resultIsActive() const
Definition: Types.h:358
const char * typeNameAsString< int32_t >()
Definition: Types.h:275
Vec2< int32_t > Vec2i
Definition: Vec2.h:518
const char * typeNameAsString< PointIndex64 >()
Definition: Types.h:289
CombineArgs()
Definition: Types.h:315
CopyPolicy
Definition: Types.h:416
bool bIsActive() const
Definition: Types.h:356
AValueType & result()
Get the output value.
Definition: Types.h:340
Signed (x, y, z) 32-bit integer coordinates.
Definition: Coord.h:47
double Real
Definition: Types.h:65
CombineArgs & setARef(const AValueType &a)
Redirect the A value to a new external source.
Definition: Types.h:347
Vec3< int32_t > Vec3i
Definition: Vec3.h:626
Quantized Hermite data object that stores compressed intersection information (offsets and normlas) f...
Definition: Hermite.h:66
int32_t Int32
Definition: Types.h:61
math::Mat3< Real > Mat3R
Definition: Types.h:99
const char * typeNameAsString< int64_t >()
Definition: Types.h:277
PointIndex< Index32, 0 > PointIndex32
Definition: Types.h:139
math::Vec4< Real > Vec4R
Definition: Types.h:90
T ElementType
Definition: Types.h:162
T ElementType
Definition: Types.h:167
void operator()(CombineArgs< ValueType > &args)
Definition: Types.h:389
const char * typeNameAsString< bool >()
Definition: Types.h:272
const char * typeNameAsString< Vec3f >()
Definition: Types.h:283
math::Vec3< Index32 > Vec3I
Definition: Types.h:78
#define OPENVDB_VERSION_NAME
Definition: version.h:43
3x3 matrix class.
Definition: Mat3.h:54
AValueType * mResultValPtr
Definition: Types.h:375
Index32 Index
Definition: Types.h:59
static const Real LEVEL_SET_HALF_WIDTH
Definition: Types.h:216
PointIndex< Index64, 1 > PointDataIndex64
Definition: Types.h:143
const char * typeNameAsString< PointIndex32 >()
Definition: Types.h:288
This struct collects both input and output arguments to "grid combiner" functors used with the tree::...
Definition: Types.h:309
SwappedCombineOp(CombineOp &_op)
Definition: Types.h:387
CombineArgs & setResultRef(AValueType &val)
Redirect the result value to a new external destination.
Definition: Types.h:351
const AValueType * mAValPtr
Definition: Types.h:372
math::Vec3< Real > Vec3R
Definition: Types.h:77
PointIndex< Index32, 1 > PointDataIndex32
Definition: Types.h:142
CombineArgs & setResult(const AValueType &val)
Set the output value.
Definition: Types.h:344
const char * typeNameAsString< Vec2i >()
Definition: Types.h:279
Definition: Exceptions.h:39
T ElementType
Definition: Types.h:157
Vec4< float > Vec4s
Definition: Vec4.h:545
const BValueType * mBValPtr
Definition: Types.h:373
const char * typeNameAsString< uint32_t >()
Definition: Types.h:276
const AValueType & a() const
Get the A input value.
Definition: Types.h:334
Vec3< double > Vec3d
Definition: Vec3.h:629
math::Vec2< Real > Vec2R
Definition: Types.h:68
const AValueType & result() const
Get the output value.
Definition: Types.h:339
MergePolicy
Definition: Types.h:261
const char * typeNameAsString< Hermite >()
Definition: Types.h:278
const char * typeNameAsString()
Definition: Types.h:271
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:321
math::Vec4< float > Vec4f
Definition: Types.h:92
PointIndex< Index64, 0 > PointIndex64
Definition: Types.h:140
unsigned char Byte
Definition: Types.h:64
math::Mat4< Real > Mat4R
Definition: Types.h:102
math::Vec3< float > Vec3f
Definition: Types.h:79
BValueType BValueT
Definition: Types.h:313
GridClass
Definition: Types.h:208
bool mBIsActive
Definition: Types.h:376
const char * typeNameAsString< Vec2s >()
Definition: Types.h:280
math::Hermite Hermite
Definition: Types.h:107
bool mResultIsActive
Definition: Types.h:377
const char * typeNameAsString< double >()
Definition: Types.h:274
const char * typeNameAsString< Vec2d >()
Definition: Types.h:281
CombineArgs & setAIsActive(bool b)
Set the active state of the A value.
Definition: Types.h:361
CanConvertType::value is true if a value of type ToType can be constructed from a v...
Definition: Types.h:184
Vec2< float > Vec2s
Definition: Vec2.h:520
math::Vec2< half > Vec2H
Definition: Types.h:71
CombineArgs & setResultIsActive(bool b)
Set the active state of the output value.
Definition: Types.h:365
void updateResultActive()
Definition: Types.h:370
const char * typeNameAsString< PointDataIndex64 >()
Definition: Types.h:291
uint32_t Index32
Definition: Types.h:57
CombineArgs & setBIsActive(bool b)
Set the active state of the B value.
Definition: Types.h:363
const char * typeNameAsString< Vec3i >()
Definition: Types.h:282
#define OPENVDB_USE_VERSION_NAMESPACE
Definition: version.h:71
Vec3< float > Vec3s
Definition: Vec3.h:628
VecType
Definition: Types.h:238
Integer wrapper, required to distinguish PointIndexGrid and PointDataGrid from Int32Grid and Int64Gri...
Definition: Types.h:120
math::BBox< Vec3d > BBoxd
Definition: Types.h:87
math::Vec2< float > Vec2f
Definition: Types.h:70
math::Vec4< half > Vec4H
Definition: Types.h:93
math::Vec2< Index32 > Vec2I
Definition: Types.h:69
math::Quat< Real > QuatR
Definition: Types.h:110
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:328
math::Mat4< double > Mat4d
Definition: Types.h:103
Vec2< double > Vec2d
Definition: Vec2.h:521
IntType_ IntType
Definition: Types.h:124
const char * typeNameAsString< Mat4s >()
Definition: Types.h:286
math::Mat4< float > Mat4s
Definition: Types.h:104
bool aIsActive() const
Definition: Types.h:354
const BValueType & b() const
Get the B input value.
Definition: Types.h:336
CombineOp & op
Definition: Types.h:396