Skip to content

Commit 2044e2e

Browse files
committed
Changes internal bounding box to 25% larger from 20%.
1 parent 755322b commit 2044e2e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/ShapesClassification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def _buildClosedVacuumDomain(self) -> Tuple[int, int]:
125125
return dict([[0, dom]])
126126

127127
def _buildDefaultVacuumDomain(self):
128-
NEAR_REGION_BOUNDING_BOX_SCALING_FACTOR = 1.2
128+
NEAR_REGION_BOUNDING_BOX_SCALING_FACTOR = 1.25
129129
FAR_REGION_DISK_SCALING_FACTOR = 4.0
130130
nonVacuumSurfaces = []
131131
for _, surf in self.pecs.items():

src/mesher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Mesher():
2121
"General.DrawBoundingBoxes": 1,
2222
"General.Axes": 1,
2323

24-
"Geometry.SurfaceType": 2, # Diplay surfaces as solids rather than dashed lines.
24+
"Geometry.SurfaceType": 2, # Display surfaces as solids rather than dashed lines.
2525
# "Geometry.OCCBoundsUseStl": 1,
2626
# "Geometry.OCCSewFaces": 1,
2727
# "Geometry.Tolerance": 1e-3,

0 commit comments

Comments
 (0)