moab
moab::BVHTree::TreeNode Class Reference

List of all members.

Public Member Functions

 TreeNode (int dm, int chld, double lmx, double rmn, BoundBox &bx)
TreeNodeoperator= (const TreeNode &f)

Public Attributes

unsigned int dim
unsigned int child
double Lmax
double Rmin
BoundBox box

Detailed Description

Definition at line 205 of file BVHTree.hpp.


Constructor & Destructor Documentation

moab::BVHTree::TreeNode::TreeNode ( int  dm,
int  chld,
double  lmx,
double  rmn,
BoundBox bx 
) [inline]

Definition at line 210 of file BVHTree.hpp.

                : dim(dm), child(chld), Lmax(lmx), Rmin(rmn), box(bx) {}

Member Function Documentation

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

Definition at line 212 of file BVHTree.hpp.

                                               {
          dim = f.dim; child = f.child;
          Lmax = f.Lmax; Rmin = f.Rmin;
          return *this;
        }

Member Data Documentation

Definition at line 207 of file BVHTree.hpp.

Definition at line 207 of file BVHTree.hpp.

Definition at line 208 of file BVHTree.hpp.

Definition at line 208 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