31 #ifndef OPENVDB_TYPES_HAS_BEEN_INCLUDED 32 #define OPENVDB_TYPES_HAS_BEEN_INCLUDED 36 #include <OpenEXR/half.h> 46 #include <boost/type_traits/is_convertible.hpp> 47 #include <boost/type_traits/is_integral.hpp> 48 #include <boost/static_assert.hpp> 63 typedef unsigned char Byte;
118 template<
typename IntType_, Index Kind>
121 BOOST_STATIC_ASSERT(boost::is_integral<IntType_>::value);
127 operator IntType()
const {
return mIndex; }
149 static const bool IsVec =
false;
150 static const int Size = 1;
154 static const bool IsVec =
true;
155 static const int Size = 2;
159 static const bool IsVec =
true;
160 static const int Size = 3;
164 static const bool IsVec =
true;
165 static const int Size = 4;
182 template<
typename FromType,
typename ToType>
183 struct CanConvertType {
enum { value = boost::is_convertible<FromType, ToType>::value }; };
194 template<
typename T0,
typename T1>
196 template<
typename T0,
typename T1>
198 template<
typename T0,
typename T1>
200 template<>
struct CanConvertType<PointIndex32, PointDataIndex32> {
enum {value =
true}; };
201 template<>
struct CanConvertType<PointDataIndex32, PointIndex32> {
enum {value =
true}; };
288 template<>
inline const char* typeNameAsString<std::string>() {
return "string"; }
311 template<
typename AValueType,
typename BValueType = AValueType>
321 , mResultValPtr(&mResultVal)
324 , mResultIsActive(false)
329 CombineArgs(
const AValueType& a,
const BValueType& b, AValueType& result,
330 bool aOn =
false,
bool bOn =
false)
333 , mResultValPtr(&result)
337 this->updateResultActive();
341 CombineArgs(
const AValueType& a,
const BValueType& b,
bool aOn =
false,
bool bOn =
false)
344 , mResultValPtr(&mResultVal)
348 this->updateResultActive();
352 const AValueType&
a()
const {
return *mAValPtr; }
354 const BValueType&
b()
const {
return *mBValPtr; }
356 const AValueType& result()
const {
return *mResultValPtr; }
358 AValueType&
result() {
return *mResultValPtr; }
402 template<
typename ValueType,
typename CombineOp>
454 #define OPENVDB_START_THREADSAFE_STATIC_REFERENCE __pragma(warning(disable:1710)) 455 #define OPENVDB_FINISH_THREADSAFE_STATIC_REFERENCE __pragma(warning(default:1710)) 456 #define OPENVDB_START_THREADSAFE_STATIC_WRITE __pragma(warning(disable:1711)) 457 #define OPENVDB_FINISH_THREADSAFE_STATIC_WRITE __pragma(warning(default:1711)) 458 #define OPENVDB_START_THREADSAFE_STATIC_ADDRESS __pragma(warning(disable:1712)) 459 #define OPENVDB_FINISH_THREADSAFE_STATIC_ADDRESS __pragma(warning(default:1712)) 463 #define OPENVDB_START_NON_THREADSAFE_STATIC_REFERENCE __pragma(warning(disable:1710)) 464 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_REFERENCE __pragma(warning(default:1710)) 465 #define OPENVDB_START_NON_THREADSAFE_STATIC_WRITE __pragma(warning(disable:1711)) 466 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_WRITE __pragma(warning(default:1711)) 467 #define OPENVDB_START_NON_THREADSAFE_STATIC_ADDRESS __pragma(warning(disable:1712)) 468 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_ADDRESS __pragma(warning(default:1712)) 471 #define OPENVDB_THREADSAFE_STATIC_REFERENCE(CODE) \ 472 __pragma(warning(disable:1710)); CODE; __pragma(warning(default:1710)) 473 #define OPENVDB_THREADSAFE_STATIC_WRITE(CODE) \ 474 __pragma(warning(disable:1711)); CODE; __pragma(warning(default:1711)) 475 #define OPENVDB_THREADSAFE_STATIC_ADDRESS(CODE) \ 476 __pragma(warning(disable:1712)); CODE; __pragma(warning(default:1712)) 478 #else // GCC does not support these compiler warnings 480 #define OPENVDB_START_THREADSAFE_STATIC_REFERENCE 481 #define OPENVDB_FINISH_THREADSAFE_STATIC_REFERENCE 482 #define OPENVDB_START_THREADSAFE_STATIC_WRITE 483 #define OPENVDB_FINISH_THREADSAFE_STATIC_WRITE 484 #define OPENVDB_START_THREADSAFE_STATIC_ADDRESS 485 #define OPENVDB_FINISH_THREADSAFE_STATIC_ADDRESS 487 #define OPENVDB_START_NON_THREADSAFE_STATIC_REFERENCE 488 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_REFERENCE 489 #define OPENVDB_START_NON_THREADSAFE_STATIC_WRITE 490 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_WRITE 491 #define OPENVDB_START_NON_THREADSAFE_STATIC_ADDRESS 492 #define OPENVDB_FINISH_NON_THREADSAFE_STATIC_ADDRESS 494 #define OPENVDB_THREADSAFE_STATIC_REFERENCE(CODE) CODE 495 #define OPENVDB_THREADSAFE_STATIC_WRITE(CODE) CODE 496 #define OPENVDB_THREADSAFE_STATIC_ADDRESS(CODE) CODE 498 #endif // defined(__ICC) 500 #endif // OPENVDB_TYPES_HAS_BEEN_INCLUDED
math::Mat4< Real > Mat4R
Definition: Types.h:101
AValueType AValueT
Definition: Types.h:315
Vec3< float > Vec3s
Definition: Vec3.h:650
const char * typeNameAsString< ValueMask >()
Definition: Types.h:276
bool resultIsActive() const
Definition: Types.h:376
GridClass
Definition: Types.h:211
math::Mat4< double > Mat4d
Definition: Types.h:102
const char * typeNameAsString< Vec2i >()
Definition: Types.h:282
CombineArgs & setAIsActive(bool b)
Set the active state of the A value.
Definition: Types.h:379
math::Vec4< Index32 > Vec4I
Definition: Types.h:90
const char * typeNameAsString< Mat4d >()
Definition: Types.h:290
Vec2< int32_t > Vec2i
Definition: Vec2.h:540
T ElementType
Definition: Types.h:161
T ElementType
Definition: Types.h:166
Vec2< double > Vec2d
Definition: Vec2.h:543
int64_t Int64
Definition: Types.h:61
CombineArgs & setResult(const AValueType &val)
Set the output value.
Definition: Types.h:362
General-purpose arithmetic and comparison routines, most of which accept arbitrary value types (or at...
Vec4< int32_t > Vec4i
Definition: Vec4.h:581
const char * typeNameAsString< int32_t >()
Definition: Types.h:279
const char * typeNameAsString< double >()
Definition: Types.h:278
T ElementType
Definition: Types.h:151
AValueType & result()
Get the output value.
Definition: Types.h:358
const AValueType * mAValPtr
Definition: Types.h:390
VecType
Definition: Types.h:241
math::BBox< Vec3d > BBoxd
Definition: Types.h:86
bool aIsActive() const
Definition: Types.h:372
static const Real LEVEL_SET_HALF_WIDTH
Definition: Types.h:219
CombineArgs & setARef(const AValueType &a)
Redirect the A value to a new external source.
Definition: Types.h:365
PointIndex< Index64, 1 > PointDataIndex64
Definition: Types.h:142
math::Quat< Real > QuatR
Definition: Types.h:106
PointIndex operator+(T x)
Needed to support the (zeroVal<PointIndex>() + val) idiom.
Definition: Types.h:131
Signed (x, y, z) 32-bit integer coordinates.
Definition: Coord.h:47
PointIndex(IntType i=IntType(0))
Definition: Types.h:125
T ElementType
Definition: Types.h:156
PointIndex< Index32, 0 > PointIndex32
Definition: Types.h:138
math::Vec4< Real > Vec4R
Definition: Types.h:89
Vec4< double > Vec4d
Definition: Vec4.h:584
bool mBIsActive
Definition: Types.h:394
const char * typeNameAsString()
Definition: Types.h:274
const BValueType * mBValPtr
Definition: Types.h:391
const char * typeNameAsString< PointIndex32 >()
Definition: Types.h:291
CombineArgs & setResultRef(AValueType &val)
Redirect the result value to a new external destination.
Definition: Types.h:369
const char * typeNameAsString< int64_t >()
Definition: Types.h:281
Vec3< int32_t > Vec3i
Definition: Vec3.h:648
void operator()(CombineArgs< ValueType > &args)
Definition: Types.h:407
const AValueType & a() const
Get the A input value.
Definition: Types.h:352
double Real
Definition: Types.h:64
const char * typeNameAsString< Vec3i >()
Definition: Types.h:285
Index32 Index
Definition: Types.h:58
math::Vec4< float > Vec4f
Definition: Types.h:91
int32_t Int32
Definition: Types.h:60
uint64_t Index64
Definition: Types.h:57
const char * typeNameAsString< PointIndex64 >()
Definition: Types.h:292
int16_t Int16
Definition: Types.h:59
#define OPENVDB_VERSION_NAME
Definition: version.h:43
Vec3< double > Vec3d
Definition: Vec3.h:651
math::Vec3< half > Vec3H
Definition: Types.h:79
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:341
const BValueType & b() const
Get the B input value.
Definition: Types.h:354
const char * typeNameAsString< bool >()
Definition: Types.h:275
const AValueType & result() const
Get the output value.
Definition: Types.h:357
math::Vec3< Index32 > Vec3I
Definition: Types.h:77
Vec4< float > Vec4s
Definition: Vec4.h:583
CopyPolicy
Definition: Types.h:434
MergePolicy
Definition: Types.h:264
const char * typeNameAsString< Vec2s >()
Definition: Types.h:283
const char * typeNameAsString< Vec3d >()
Definition: Types.h:287
CanConvertType<FromType, ToType>::value is true if a value of type ToType can be constructed from a v...
Definition: Types.h:183
Definition: Exceptions.h:39
const char * typeNameAsString< PointDataIndex32 >()
Definition: Types.h:293
uint32_t Index32
Definition: Types.h:56
SwappedCombineOp(CombineOp &_op)
Definition: Types.h:405
3x3 matrix class.
Definition: Mat3.h:54
CombineArgs & setBIsActive(bool b)
Set the active state of the B value.
Definition: Types.h:381
const char * typeNameAsString< uint32_t >()
Definition: Types.h:280
CombineArgs()
Definition: Types.h:318
math::Vec2< float > Vec2f
Definition: Types.h:69
math::Vec4< half > Vec4H
Definition: Types.h:92
math::Mat3< Real > Mat3R
Definition: Types.h:98
PointIndex< Index32, 1 > PointDataIndex32
Definition: Types.h:141
const char * typeNameAsString< PointDataIndex64 >()
Definition: Types.h:294
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:329
const char * typeNameAsString< Mat4s >()
Definition: Types.h:289
AValueType mResultVal
Definition: Types.h:392
CombineArgs & setBRef(const BValueType &b)
Redirect the B value to a new external source.
Definition: Types.h:367
Axis-aligned bounding box of signed integer coordinates.
Definition: Coord.h:259
const char * typeNameAsString< Vec2d >()
Definition: Types.h:284
bool mResultIsActive
Definition: Types.h:395
const char * typeNameAsString< float >()
Definition: Types.h:277
Integer wrapper, required to distinguish PointIndexGrid and PointDataGrid from Int32Grid and Int64Gri...
Definition: Types.h:119
PointIndex< Index64, 0 > PointIndex64
Definition: Types.h:139
unsigned char Byte
Definition: Types.h:63
math::Vec3< Real > Vec3R
Definition: Types.h:76
math::Vec2< Index32 > Vec2I
Definition: Types.h:68
math::Vec3< float > Vec3f
Definition: Types.h:78
BValueType BValueT
Definition: Types.h:316
AValueType * mResultValPtr
Definition: Types.h:393
CombineOp & op
Definition: Types.h:414
void updateResultActive()
Definition: Types.h:388
math::Mat4< float > Mat4s
Definition: Types.h:103
#define OPENVDB_USE_VERSION_NAMESPACE
Definition: version.h:71
Vec2< float > Vec2s
Definition: Vec2.h:542
bool bIsActive() const
Definition: Types.h:374
const char * typeNameAsString< Vec3f >()
Definition: Types.h:286
math::Vec2< Real > Vec2R
Definition: Types.h:67
CombineArgs & setResultIsActive(bool b)
Set the active state of the output value.
Definition: Types.h:383
math::Vec2< half > Vec2H
Definition: Types.h:70
Int32 Int
Definition: Types.h:62
This struct collects both input and output arguments to "grid combiner" functors used with the tree::...
Definition: Types.h:312
IntType_ IntType
Definition: Types.h:123