Determine if the bounds of this box are the same as that of another box. Empty bounds boxes are always equal. \param other Bounds box to check for equality. \return \c true if the provided box has equal limits to this box, \c false otherwise. */
| 134 | \c false otherwise. |
| 135 | */ |
| 136 | bool equal(const BOX2D& other) const |
| 137 | { |
| 138 | return minx == other.minx && maxx == other.maxx && |
| 139 | miny == other.miny && maxy == other.maxy; |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | Determine if the bounds of this box are the same as that of another |
no outgoing calls