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