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