Skip to content

Commit

Permalink
fix bug with spherical shape enclosure (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
psauvan authored Jul 22, 2024
1 parent faab941 commit 40abd59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/geouned/GEOUNED/void/void_box_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def __init__(self, MetaSolids, Enclosure):
self.BoundBox = Enclosure
self.PieceEnclosure = None
else:
self.BoundBox = Enclosure.BoundBox
self.BoundBox = Enclosure.optimalBoundingBox()
self.PieceEnclosure = Enclosure

for m in MetaSolids:
Expand Down

0 comments on commit 40abd59

Please sign in to comment.