moab
moab::BVHTree::SplitData Class Reference

List of all members.

Public Member Functions

 SplitData ()
 SplitData (const SplitData &f)
SplitDataoperator= (const SplitData &f)

Public Attributes

unsigned int dim
unsigned int nl
unsigned int nr
double split
double Lmax
double Rmin
BoundBox boundingBox
BoundBox leftBox
BoundBox rightBox

Detailed Description

Definition at line 136 of file BVHTree.hpp.


Constructor & Destructor Documentation

Definition at line 138 of file BVHTree.hpp.

                   : dim(UINT_MAX), nl(UINT_MAX), nr(UINT_MAX), split(DBL_MAX), 
                     Lmax(-DBL_MAX), Rmin(DBL_MAX) {}

Definition at line 140 of file BVHTree.hpp.

                                      : 
        dim(f.dim), nl(f.nl), nr(f.nr), split(f.split), Lmax(f.Lmax), Rmin(f.Rmin), 
        boundingBox(f.boundingBox), leftBox(f.leftBox), rightBox(f.rightBox){}

Member Function Documentation

SplitData& moab::BVHTree::SplitData::operator= ( const SplitData f) [inline]

Definition at line 147 of file BVHTree.hpp.

                                                 {
          dim = f.dim; nl = f.nl; nr = f.nr;
          split = f.split; Lmax = f.Lmax; Rmin = f.Rmin;
          boundingBox = f.boundingBox; leftBox = f.leftBox; rightBox = f.rightBox;
          return *this;
        }

Member Data Documentation

Definition at line 143 of file BVHTree.hpp.

Definition at line 145 of file BVHTree.hpp.

Definition at line 143 of file BVHTree.hpp.

Definition at line 143 of file BVHTree.hpp.

Definition at line 145 of file BVHTree.hpp.

Definition at line 144 of file BVHTree.hpp.


The documentation for this class was generated from the following file:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines