bool BoundingBox::notEq(const BoundingBox& aBox) const { return (topLeft_ != aBox.topLeft()) || (bottomRight_ != aBox.bottomRight()); }
bool BoundingBox::eq(const BoundingBox& aBox) const { return (topLeft_ == aBox.topLeft()) && (bottomRight_ == aBox.bottomRight()); }