From 80e484b07a8e0090a437a40c64b54cd740102aea Mon Sep 17 00:00:00 2001 From: DeepSOIC Date: Mon, 20 Apr 2020 03:29:47 +0300 Subject: [PATCH] BoundBox: switch default to low-precision it sometimes takes forever to compute a precise version, and there is no way to suspend that recompute --- lattice2BoundBox.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lattice2BoundBox.py b/lattice2BoundBox.py index 923302b..b3ad396 100644 --- a/lattice2BoundBox.py +++ b/lattice2BoundBox.py @@ -114,7 +114,7 @@ class _BoundBox: obj.CompoundTraversal = "Use as a whole" obj.addProperty("App::PropertyBool","Precision","BoundBox","Use precise algorithm (slower).") - obj.Precision = True + obj.Precision = False obj.addProperty("App::PropertyEnumeration","OrientMode","BoundBox","Choose the orientation of bounding boxes to be made.") obj.OrientMode = ["global","local of compound","local of child","use OrientLink"] @@ -254,7 +254,7 @@ class _ViewProviderBoundBox: def CreateBoundBox(ShapeLink, CompoundTraversal = "Use as a whole", - Precision = True, + Precision = False, OrientMode = "global", OrientLink = None):