26 lines
414 B
C++
26 lines
414 B
C++
|
#include "Box.h"
|
||
|
|
||
|
Box::Box() {
|
||
|
// initialize to unit cube by default
|
||
|
_size = 1.0;
|
||
|
}
|
||
|
|
||
|
Box::Box(const double SIZE) {
|
||
|
// if desired size is positive, assign
|
||
|
if (SIZE > 0) {
|
||
|
_size = SIZE;
|
||
|
}
|
||
|
// otherwise default to one
|
||
|
else {
|
||
|
_size = 1.0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
double Box::getBoxSize() { return _size; }
|
||
|
void Box::setBoxSize(const double SIZE) {
|
||
|
// if desired size is positive, assign
|
||
|
if (SIZE > 0) {
|
||
|
_size = SIZE;
|
||
|
}
|
||
|
}
|