Skip to content

Commit e99f3db

Browse files
committed
fix(bounding): Add generic check for overlapping bounding box
1 parent ea02291 commit e99f3db

File tree

3 files changed

+77
-5
lines changed

3 files changed

+77
-5
lines changed

ladybug_geometry/bounding.py

+67
Original file line numberDiff line numberDiff line change
@@ -204,3 +204,70 @@ def bounding_box_extents(geometries, axis_angle=0):
204204
yy = bounding_domain_y(geometries)
205205
zz = bounding_domain_z_2d_safe(geometries)
206206
return xx[1] - xx[0], yy[1] - yy[0], zz[1] - zz[0]
207+
208+
209+
def overlapping_bounding_rect(geometry_1, geometry_2, distance):
210+
"""Check if the bounding rectangles of two geometries overlap within a tolerance.
211+
212+
Args:
213+
geometry_1: The first geometry to check.
214+
geometry_2: The second geometry to check.
215+
distance: The maximum distance at which the geometries are
216+
considered overlapping.
217+
218+
Return:
219+
True if the geometries overlap. False if they do not.
220+
"""
221+
# Bounding box check using the Separating Axis Theorem
222+
geo1_width = geometry_1.max.x - geometry_1.min.x
223+
geo2_width = geometry_2.max.x - geometry_2.min.x
224+
dist_btwn_x = abs(geometry_1.center.x - geometry_2.center.x)
225+
x_gap_btwn_box = dist_btwn_x - (0.5 * geo1_width) - (0.5 * geo2_width)
226+
if x_gap_btwn_box > distance:
227+
return False # overlap impossible
228+
229+
geo1_depth = geometry_1.max.y - geometry_1.min.y
230+
geo2_depth = geometry_2.max.y - geometry_2.min.y
231+
dist_btwn_y = abs(geometry_1.center.y - geometry_2.center.y)
232+
y_gap_btwn_box = dist_btwn_y - (0.5 * geo1_depth) - (0.5 * geo2_depth)
233+
if y_gap_btwn_box > distance:
234+
return False # overlap impossible
235+
236+
return True # overlap exists
237+
238+
239+
def overlapping_bounding_boxes(geometry_1, geometry_2, distance):
240+
"""Check if the bounding boxes around two geometries overlap within a distance.
241+
242+
Args:
243+
geometry_1: The first geometry to check.
244+
geometry_2: The second geometry to check.
245+
distance: The maximum distance at which the geometries are
246+
considered overlapping.
247+
248+
Return:
249+
True if the geometries overlap. False if they do not.
250+
"""
251+
# Bounding box check using the Separating Axis Theorem
252+
geo1_width = geometry_1.max.x - geometry_1.min.x
253+
geo2_width = geometry_2.max.x - geometry_2.min.x
254+
dist_btwn_x = abs(geometry_1.center.x - geometry_2.center.x)
255+
x_gap_btwn_box = dist_btwn_x - (0.5 * geo1_width) - (0.5 * geo2_width)
256+
if x_gap_btwn_box > distance:
257+
return False # overlap impossible
258+
259+
geo1_depth = geometry_1.max.y - geometry_1.min.y
260+
geo2_depth = geometry_2.max.y - geometry_2.min.y
261+
dist_btwn_y = abs(geometry_1.center.y - geometry_2.center.y)
262+
y_gap_btwn_box = dist_btwn_y - (0.5 * geo1_depth) - (0.5 * geo2_depth)
263+
if y_gap_btwn_box > distance:
264+
return False # overlap impossible
265+
266+
geo1_height = geometry_1.max.z - geometry_1.min.z
267+
geo2_height = geometry_2.max.z - geometry_2.min.z
268+
dist_btwn_z = abs(geometry_1.center.z - geometry_2.center.z)
269+
z_gap_btwn_box = dist_btwn_z - (0.5 * geo1_height) - (0.5 * geo2_height)
270+
if z_gap_btwn_box > distance:
271+
return False # overlap impossible
272+
273+
return True # overlap exists

ladybug_geometry/geometry2d/polygon.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1717,14 +1717,16 @@ def overlapping_bounding_rect(polygon1, polygon2, tolerance):
17171717
polygon2_width = polygon2.max.x - polygon2.min.x
17181718
dist_btwn_x = abs(polygon1.center.x - polygon2.center.x)
17191719
x_gap_btwn_rect = dist_btwn_x - (0.5 * polygon1_width) - (0.5 * polygon2_width)
1720+
if x_gap_btwn_rect > tolerance:
1721+
return False
17201722

17211723
polygon1_height = polygon1.max.y - polygon1.min.y
17221724
polygon2_height = polygon2.max.y - polygon2.min.y
17231725
dist_btwn_y = abs(polygon1.center.y - polygon2.center.y)
17241726
y_gap_btwn_rect = dist_btwn_y - (0.5 * polygon1_height) - (0.5 * polygon2_height)
1727+
if y_gap_btwn_rect > tolerance:
1728+
return False # overlap impossible
17251729

1726-
if x_gap_btwn_rect > tolerance or y_gap_btwn_rect > tolerance:
1727-
return False # no overlap
17281730
return True # overlap exists
17291731

17301732
@staticmethod

ladybug_geometry/geometry3d/polyface.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -771,20 +771,23 @@ def overlapping_bounding_boxes(polyface1, polyface2, tolerance):
771771
polyf2_width = polyface2.max.x - polyface2.min.x
772772
dist_btwn_x = abs(polyface1.center.x - polyface2.center.x)
773773
x_gap_btwn_box = dist_btwn_x - (0.5 * polyf1_width) - (0.5 * polyf2_width)
774+
if x_gap_btwn_box > tolerance:
775+
return False # overlap impossible
774776

775777
polyf1_depth = polyface1.max.y - polyface1.min.y
776778
polyf2_depth = polyface2.max.y - polyface2.min.y
777779
dist_btwn_y = abs(polyface1.center.y - polyface2.center.y)
778780
y_gap_btwn_box = dist_btwn_y - (0.5 * polyf1_depth) - (0.5 * polyf2_depth)
781+
if y_gap_btwn_box > tolerance:
782+
return False # overlap impossible
779783

780784
polyf1_height = polyface1.max.z - polyface1.min.z
781785
polyf2_height = polyface2.max.z - polyface2.min.z
782786
dist_btwn_z = abs(polyface1.center.z - polyface2.center.z)
783787
z_gap_btwn_box = dist_btwn_z - (0.5 * polyf1_height) - (0.5 * polyf2_height)
784-
785-
if x_gap_btwn_box > tolerance or y_gap_btwn_box > tolerance or \
786-
z_gap_btwn_box > tolerance:
788+
if z_gap_btwn_box > tolerance:
787789
return False # no overlap
790+
788791
return True # overlap exists
789792

790793
@staticmethod

0 commit comments

Comments
 (0)