@@ -204,3 +204,70 @@ def bounding_box_extents(geometries, axis_angle=0):
204
204
yy = bounding_domain_y (geometries )
205
205
zz = bounding_domain_z_2d_safe (geometries )
206
206
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
0 commit comments