OpenVDB  11.0.0
Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | List of all members
LeafData< ValueT, CoordT, MaskT, LOG2DIM > Struct Template Reference

Stuct with all the member data of the LeafNode (useful during serialization of an openvdb LeafNode) More...

#include <nanovdb/NanoVDB.h>

Public Types

using ValueType = ValueT
 
using BuildType = ValueT
 
using FloatType = typename FloatTraits< ValueT >::FloatType
 
using ArrayType = ValueT
 

Public Member Functions

ValueType getValue (uint32_t i) const
 
void setValueOnly (uint32_t offset, const ValueType &value)
 
void setValue (uint32_t offset, const ValueType &value)
 
void setOn (uint32_t offset)
 
ValueType getMin () const
 
ValueType getMax () const
 
FloatType getAvg () const
 
FloatType getDev () const
 
void setMin (const ValueType &v)
 
void setMax (const ValueType &v)
 
void setAvg (const FloatType &v)
 
void setDev (const FloatType &v)
 
template<typename T >
void setOrigin (const T &ijk)
 
void fill (const ValueType &v)
 
 LeafData ()=delete
 This class cannot be constructed or deleted. More...
 
 LeafData (const LeafData &)=delete
 
LeafDataoperator= (const LeafData &)=delete
 
 ~LeafData ()=delete
 

Static Public Member Functions

static constexpr uint32_t padding ()
 Return padding of this class in bytes, due to aliasing and 32B alignment. More...
 
static uint64_t memUsage ()
 
static bool hasStats ()
 

Public Attributes

CoordT mBBoxMin
 
uint8_t mBBoxDif [3]
 
uint8_t mFlags
 
MaskT< LOG2DIM > mValueMask
 
ValueType mMinimum
 
ValueType mMaximum
 
FloatType mAverage
 
FloatType mStdDevi
 
ValueType mValues [1u<< 3 *LOG2DIM]
 

Static Public Attributes

static constexpr bool FIXED_SIZE = true
 

Detailed Description

template<typename ValueT, typename CoordT, template< uint32_t > class MaskT, uint32_t LOG2DIM>
struct nanovdb::LeafData< ValueT, CoordT, MaskT, LOG2DIM >

Stuct with all the member data of the LeafNode (useful during serialization of an openvdb LeafNode)

Note
No client code should (or can) interface with this struct so it can safely be ignored!

Member Typedef Documentation

using ArrayType = ValueT
using BuildType = ValueT
using FloatType = typename FloatTraits<ValueT>::FloatType
using ValueType = ValueT

Constructor & Destructor Documentation

LeafData ( )
delete

This class cannot be constructed or deleted.

LeafData ( const LeafData< ValueT, CoordT, MaskT, LOG2DIM > &  )
delete
~LeafData ( )
delete

Member Function Documentation

void fill ( const ValueType v)
inline
FloatType getAvg ( ) const
inline
FloatType getDev ( ) const
inline
ValueType getMax ( ) const
inline
ValueType getMin ( ) const
inline
ValueType getValue ( uint32_t  i) const
inline
static bool hasStats ( )
inlinestatic
static uint64_t memUsage ( )
inlinestatic
LeafData& operator= ( const LeafData< ValueT, CoordT, MaskT, LOG2DIM > &  )
delete
static constexpr uint32_t padding ( )
inlinestatic

Return padding of this class in bytes, due to aliasing and 32B alignment.

Note
The extra bytes are not necessarily at the end, but can come from aliasing of individual data members.
void setAvg ( const FloatType v)
inline
void setDev ( const FloatType v)
inline
void setMax ( const ValueType v)
inline
void setMin ( const ValueType v)
inline
void setOn ( uint32_t  offset)
inline
void setOrigin ( const T &  ijk)
inline
void setValue ( uint32_t  offset,
const ValueType value 
)
inline
void setValueOnly ( uint32_t  offset,
const ValueType value 
)
inline

Member Data Documentation

constexpr bool FIXED_SIZE = true
static
FloatType mAverage
uint8_t mBBoxDif[3]
CoordT mBBoxMin
uint8_t mFlags
ValueType mMaximum
ValueType mMinimum
FloatType mStdDevi
MaskT<LOG2DIM> mValueMask
ValueType mValues[1u<< 3 *LOG2DIM]