Fix clippy

This commit is contained in:
2025-07-11 15:24:35 +02:00
parent c59febd924
commit fe0b9d049e
4 changed files with 7 additions and 7 deletions

View File

@ -140,8 +140,7 @@ impl PxBoundingBox {
}
pub fn is_disjoint_from(&self, other: &PxBoundingBox) -> bool {
false
|| self.x_from > other.x_to
self.x_from > other.x_to
|| self.y_from > other.y_to
|| other.x_from > self.x_to
|| other.y_from > self.y_to