OpenVDB  9.0.1
Public Types | Public Member Functions | List of all members
DiscreteField< VelGridT, Interpolator > Class Template Reference

Thin wrapper class for a velocity grid. More...

#include <openvdb/tools/VelocityFields.h>

Public Types

typedef VelGridT::ValueType VectorType
 
typedef VectorType::ValueType ValueType
 

Public Member Functions

 DiscreteField (const VelGridT &vel)
 
 DiscreteField (const DiscreteField &other)
 Copy constructor. More...
 
const math::Transformtransform () const
 
VectorType operator() (const Vec3d &xyz, ValueType) const
 
VectorType operator() (const Coord &ijk, ValueType) const
 

Detailed Description

template<typename VelGridT, typename Interpolator = BoxSampler>
class openvdb::v9_0::tools::DiscreteField< VelGridT, Interpolator >

Thin wrapper class for a velocity grid.

Note
Consider replacing BoxSampler with StaggeredBoxSampler

Member Typedef Documentation

typedef VectorType::ValueType ValueType
typedef VelGridT::ValueType VectorType

Constructor & Destructor Documentation

DiscreteField ( const VelGridT &  vel)
inline
DiscreteField ( const DiscreteField< VelGridT, Interpolator > &  other)
inline

Copy constructor.

Member Function Documentation

VectorType operator() ( const Vec3d &  xyz,
ValueType   
) const
inline
Returns
the interpolated velocity at the world space position xyz
Warning
Not threadsafe since it uses a ValueAccessor! So use one instance per thread (which is fine since its lightweight).
VectorType operator() ( const Coord &  ijk,
ValueType   
) const
inline
Returns
the velocity at the coordinate space position ijk
Warning
Not threadsafe since it uses a ValueAccessor! So use one instance per thread (which is fine since its lightweight).
const math::Transform& transform ( ) const
inline
Returns
const reference to the transform between world and index space
Note
Use this method to determine if a client grid is aligned with the coordinate space of the velocity grid.