4 #include "boundingbox.h"
bool isUpper()
Returns whether or not this is an upper bound of a BoundingBox.
Definition: boundary.cpp:18
The BoundingBox class represents a square or cube that fits perfectly around a particle.
Definition: boundingbox.h:14
Boundary(int dimensionIn, double valueIn, bool isUpper, BoundingBox *boxIn)
Constructs a Boundary Object.
Definition: boundary.cpp:3
bool isLower()
Returns whether or not this is a lower bound of a BoundingBox.
Definition: boundary.cpp:23
int getDimension()
Returns the dimension this Boundary is bounding.
Definition: boundary.cpp:28
The Boundary class is an object representing a Particle's endpoints.
Definition: boundary.h:9
void update()
Adjusts the coordinte value of this Bounary to reflect the current location of its associated Boundin...
Definition: boundary.cpp:38
double getValue()
Returns the coordinate of this Boundary.
Definition: boundary.cpp:13
BoundingBox * getBox()
Returns a pointer to the BoundingBox this Boundary relates to.
Definition: boundary.cpp:33