OpenVDB  9.0.1
Public Types | Public Member Functions | List of all members
LevelSetSphere< GridT, InterruptT > Class Template Reference

Generates a signed distance field (or narrow band level set) to a single sphere. More...

#include <openvdb/tools/LevelSetSphere.h>

Public Types

using TreeT = typename GridT::TreeType
 
using ValueT = typename GridT::ValueType
 
using Vec3T = typename math::Vec3< ValueT >
 

Public Member Functions

 LevelSetSphere (ValueT radius, const Vec3T &center, InterruptT *interrupt=nullptr)
 Constructor. More...
 
GridT::Ptr getLevelSet (ValueT voxelSize, ValueT halfWidth, bool threaded=true)
 

Detailed Description

template<typename GridT, typename InterruptT = util::NullInterrupter>
class openvdb::v9_0::tools::LevelSetSphere< GridT, InterruptT >

Generates a signed distance field (or narrow band level set) to a single sphere.

Note
The leapfrog algorithm employed in this class is best suited for a single large sphere. For multiple small spheres consider using the faster algorithm in tools/ParticlesToLevelSet.h

Member Typedef Documentation

using TreeT = typename GridT::TreeType
using ValueT = typename GridT::ValueType
using Vec3T = typename math::Vec3<ValueT>

Constructor & Destructor Documentation

LevelSetSphere ( ValueT  radius,
const Vec3T center,
InterruptT *  interrupt = nullptr 
)
inline

Constructor.

Parameters
radiusradius of the sphere in world units
centercenter of the sphere in world units
interruptpointer to optional interrupter. Use template argument util::NullInterrupter if no interruption is desired.
Note
If the radius of the sphere is smaller than 1.5*voxelSize, i.e. the sphere is smaller than the Nyquist frequency of the grid, it is ignored!

Member Function Documentation

GridT::Ptr getLevelSet ( ValueT  voxelSize,
ValueT  halfWidth,
bool  threaded = true 
)
inline
Returns
a narrow-band level set of the sphere
Parameters
voxelSizeSize of voxels in world units
halfWidthHalf-width of narrow-band in voxel units
threadedIf true multi-threading is enabled (true by default)