mirror of
https://github.com/NoelFB/blah.git
synced 2024-11-25 16:18:57 +08:00
Use correct rect overlap check
This commit is contained in:
parent
a1f1bd0742
commit
ad5419d8bc
|
@ -727,7 +727,7 @@ namespace Blah
|
||||||
|
|
||||||
template<class T>
|
template<class T>
|
||||||
constexpr bool Rect<T>::overlaps(const Rect& rect) const {
|
constexpr bool Rect<T>::overlaps(const Rect& rect) const {
|
||||||
return x + w >= rect.x && y + h >= rect.y && x < rect.x + rect.w && y < rect.y + rect.h;
|
return x + w > rect.x && y + h > rect.y && x < rect.x + rect.w && y < rect.y + rect.h;
|
||||||
}
|
}
|
||||||
|
|
||||||
template<class T>
|
template<class T>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user