intersects method
Returns true ifthis intersectsother.
Implementation
bool intersects(Rectangle<num> other) { return (left <= other.left + other.width && other.left <= left + width && top <= other.top + other.height && other.top <= top + height);}