OpenVDB
2.0.0
|
This file defines a simple dense grid and efficient converters to and from VDB grids. More...
#include <openvdb/Types.h>
#include <openvdb/Grid.h>
#include <openvdb/tree/ValueAccessor.h>
#include <openvdb/Exceptions.h>
#include <tbb/parallel_for.h>
#include <boost/scoped_ptr.hpp>
Go to the source code of this file.
Classes | |
class | Dense< ValueT > |
Dense is a simple dense grid API used by the CopyToDense and CopyFromDense classes defined below. More... | |
class | Dense< ValueT > |
Dense is a simple dense grid API used by the CopyToDense and CopyFromDense classes defined below. More... | |
class | CopyToDense< _TreeT, _DenseT > |
Copy an OpenVDB tree into an existing dense grid. More... | |
class | CopyFromDense< _TreeT, _DenseT > |
Copy the values from a dense grid into an OpenVDB tree. More... | |
Namespaces | |
openvdb | |
openvdb::v2_0_0 | |
openvdb::v2_0_0::tools | |
Functions | |
template<typename DenseT , typename GridOrTreeT > | |
void | copyToDense (const GridOrTreeT &sparse, DenseT &dense, bool serial=false) |
Populate a dense grid with the values of voxels from a sparse grid, where the sparse grid intersects the dense grid. More... | |
template<typename DenseT , typename GridOrTreeT > | |
void | copyFromDense (const DenseT &dense, GridOrTreeT &sparse, const typename GridOrTreeT::ValueType &tolerance, bool serial=false) |
Populate a sparse grid with the values of all of the voxels of a dense grid. More... | |
This file defines a simple dense grid and efficient converters to and from VDB grids.