MayaFlux 0.4.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ overlaps()

bool MayaFlux::Kinesis::AABB2D::overlaps ( const AABB2D other) const
inlinenoexcept

Definition at line 31 of file Bounds.hpp.

32 {
33 return min.x <= other.max.x && max.x >= other.min.x
34 && min.y <= other.max.y && max.y >= other.min.y;
35 }

References max, and min.