Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2020-07-31 11:02:07 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-07-31 11:02:07 +0300
commit666379fe7cf7455b892d5e1b66f3928102cca3a1 (patch)
treed5febc3c1b64bd71038390400f7754ed743789f5
parent3bdb5f41aea4897762edd09a71b0bfa8b0b7bc10 (diff)
Measureit: Fix unreported missing scene scale in arcs
The scale of the scene was not applied to the arcs. This fix is related to D8418, but with minor changes.
-rw-r--r--measureit/measureit_geometry.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/measureit/measureit_geometry.py b/measureit/measureit_geometry.py
index 1f314f7f..998bc038 100644
--- a/measureit/measureit_geometry.py
+++ b/measureit/measureit_geometry.py
@@ -413,7 +413,7 @@ def draw_segments(context, myobj, op, region, rv3d):
if ms.gltype == 11: # arc
# print length or arc and angle
if ms.glarc_len is True:
- tx_dist = ms.glarc_txlen + format_distance(fmt, units, arc_length)
+ tx_dist = ms.glarc_txlen + format_distance(fmt, units, arc_length * scale)
else:
tx_dist = " "
@@ -453,7 +453,7 @@ def draw_segments(context, myobj, op, region, rv3d):
if scene.measureit_gl_show_d is True and ms.gldist is True and \
ms.glarc_rad is True:
tx_dist = ms.glarc_txradio + format_distance(fmt, units,
- dist * scene.measureit_scale_factor)
+ dist * scene.measureit_scale_factor * scale)
else:
tx_dist = " "
if ms.gltype == 2: