BoundBox: switch default to low-precision

it sometimes takes forever to compute a precise version, and there is no way to suspend that recompute
This commit is contained in:
DeepSOIC 2020-04-20 03:29:47 +03:00
parent c949f2101f
commit 80e484b07a

View File

@ -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):