OpenVDB  9.0.1
Classes | Public Types | Public Member Functions | Public Attributes | List of all members
BBox< CoordT, false > Struct Template Reference

Partial template specialization for integer coordinate types. More...

#include <nanovdb/NanoVDB.h>

Inherits BaseBBox< CoordT >.

Classes

class  Iterator
 Iterator over the domain covered by a BBox. More...
 

Public Types

using BaseT = BaseBBox< CoordT >
 

Public Member Functions

Iterator begin () const
 
 BBox ()
 
 BBox (const CoordT &min, const CoordT &max)
 
template<typename SplitT >
 BBox (BBox &other, const SplitT &)
 
bool is_divisible () const
 
bool empty () const
 Return true if this bounding box is empty, i.e. uninitialized. More...
 
CoordT dim () const
 
uint64_t volume () const
 
bool isInside (const CoordT &p) const
 
bool isInside (const BBox &b) const
 
template<typename RealT >
BBox< Vec3< RealT > > asReal () const
 
BBox expandBy (typename CoordT::ValueType padding) const
 Return a new instance that is expanded by the specified padding. More...
 
bool operator== (const BaseBBox &rhs) const
 
bool operator!= (const BaseBBox &rhs) const
 
const CoordT & operator[] (int i) const
 
CoordT & operator[] (int i)
 
CoordT & min ()
 
const CoordT & min () const
 
CoordT & max ()
 
const CoordT & max () const
 
Coordtranslate (const CoordT &xyz)
 
BaseBBoxexpand (const CoordT &xyz)
 
bool isInside (const CoordT &xyz)
 

Public Attributes

CoordT mCoord [2]
 

Detailed Description

template<typename CoordT>
struct nanovdb::BBox< CoordT, false >

Partial template specialization for integer coordinate types.

Note
Both min and max are INCLUDED in the bbox so dim = max - min + 1. So, if min = max the bounding box contains exactly one point and dim = 1!

Member Typedef Documentation

using BaseT = BaseBBox<CoordT>

Constructor & Destructor Documentation

BBox ( )
inline
BBox ( const CoordT &  min,
const CoordT &  max 
)
inline
BBox ( BBox< CoordT, false > &  other,
const SplitT &   
)
inline

Member Function Documentation

BBox<Vec3<RealT> > asReal ( ) const
inline
Warning
This converts a CoordBBox into a floating-point bounding box which implies that max += 1 !
Iterator begin ( ) const
inline
CoordT dim ( ) const
inline
bool empty ( ) const
inline

Return true if this bounding box is empty, i.e. uninitialized.

BaseBBox& expand ( const CoordT &  xyz)
inlineinherited
BBox expandBy ( typename CoordT::ValueType  padding) const
inline

Return a new instance that is expanded by the specified padding.

bool is_divisible ( ) const
inline
bool isInside ( const CoordT &  xyz)
inlineinherited
bool isInside ( const CoordT &  p) const
inline
bool isInside ( const BBox< CoordT, false > &  b) const
inline
CoordT & max ( )
inlineinherited
const CoordT & max ( ) const
inlineinherited
CoordT & min ( )
inlineinherited
const CoordT & min ( ) const
inlineinherited
bool operator!= ( const BaseBBox< CoordT > &  rhs) const
inlineinherited
bool operator== ( const BaseBBox< CoordT > &  rhs) const
inlineinherited
const CoordT & operator[] ( int  i) const
inlineinherited
CoordT & operator[] ( int  i)
inlineinherited
Coord& translate ( const CoordT &  xyz)
inlineinherited
uint64_t volume ( ) const
inline

Member Data Documentation

CoordT mCoord[2]
inherited