This directory contains global utility functions that can be reused across different parts of the application.
- Description: Checks if two rectangles overlap.
- Parameters:
a: The first rectangle (XYRect).b: The second rectangle (XYRect).
- Returns:
trueif the rectangles overlap,falseotherwise.
- Description: Checks if two rectangles are equal within a small tolerance (EPS).
- Parameters:
a: The first rectangle (XYRect).b: The second rectangle (XYRect).
- Returns:
trueif the rectangles are equal,falseotherwise.