moab
moab::BVHTree::Node Class Reference

List of all members.

Public Member Functions

 Node ()
Nodeoperator= (const Node &f)

Public Attributes

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

Detailed Description

Definition at line 190 of file BVHTree.hpp.


Constructor & Destructor Documentation

Definition at line 196 of file BVHTree.hpp.

: dim(-2), child(-1), Lmax(-DBL_MAX), Rmin(DBL_MAX) {}        

Member Function Documentation

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

Definition at line 197 of file BVHTree.hpp.

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

Member Data Documentation

Definition at line 195 of file BVHTree.hpp.

Definition at line 193 of file BVHTree.hpp.

Definition at line 193 of file BVHTree.hpp.

Definition at line 194 of file BVHTree.hpp.

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