Increase default deflection tolerance to improve performance

This only results in a lower resolution for things like advanced brep
geometry which isn't a biggie (I'll eat my words later)
This commit is contained in:
Dion Moult
2026-01-23 15:32:04 +11:00
parent bbda8d2aff
commit 247f0c41d9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1303,7 +1303,7 @@ class IfcImportSettings:
self.should_load_geometry = True
self.should_clean_mesh = False
self.should_cache = True
self.deflection_tolerance = 0.001
self.deflection_tolerance = 0.05 # Default is 0.001, but I find this to be more practical
self.angular_tolerance = 0.5
self.void_limit = 30
self.style_limit = 300
+1 -1
View File
@@ -319,7 +319,7 @@ class BIMProjectProperties(PropertyGroup):
),
default=False,
)
deflection_tolerance: FloatProperty(name="Deflection Tolerance", default=0.001)
deflection_tolerance: FloatProperty(name="Deflection Tolerance", default=0.05)
angular_tolerance: FloatProperty(name="Angular Tolerance", default=0.5)
void_limit: IntProperty(
name="Void Limit",