From 6397fabb79094249ac603f2e1c2bb96a208df730 Mon Sep 17 00:00:00 2001 From: Eric Price Date: Sat, 12 Oct 2024 18:41:23 +0200 Subject: [PATCH] disable tesselation limit in ViewProviderGUI to prevent large parts from freezing FreeCAD --- src/Mod/Part/Gui/ViewProviderExt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Part/Gui/ViewProviderExt.cpp b/src/Mod/Part/Gui/ViewProviderExt.cpp index 81b1b5e59a..0c1155035c 100644 --- a/src/Mod/Part/Gui/ViewProviderExt.cpp +++ b/src/Mod/Part/Gui/ViewProviderExt.cpp @@ -975,7 +975,7 @@ void ViewProviderPartExt::updateVisual() // For very big objects the computed deflection can become very high and thus leads to a useless // tessellation. To avoid this the upper limit is set to 20.0 // See also forum: https://forum.freecad.org/viewtopic.php?t=77521 - deflection = std::min(deflection, 20.0); + //deflection = std::min(deflection, 20.0); // create or use the mesh on the data structure Standard_Real AngDeflectionRads = AngularDeflection.getValue() / 180.0 * M_PI;