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:
Diffstat (limited to 'mesh_extra_tools/mesh_edges_length.py')
-rw-r--r--mesh_extra_tools/mesh_edges_length.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/mesh_extra_tools/mesh_edges_length.py b/mesh_extra_tools/mesh_edges_length.py
index 0c1f3cb4..eac31a2f 100644
--- a/mesh_extra_tools/mesh_edges_length.py
+++ b/mesh_extra_tools/mesh_edges_length.py
@@ -64,11 +64,11 @@ class LengthSet(Operator):
"Note: works only with Edges that not share a vertex")
bl_options = {'REGISTER', 'UNDO'}
- old_length = FloatProperty(
+ old_length: FloatProperty(
name="Original length",
options={'HIDDEN'},
)
- set_length_type = EnumProperty(
+ set_length_type: EnumProperty(
items=[
('manual', "Manual",
"Input manually the desired Target Length"),
@@ -77,14 +77,14 @@ class LengthSet(Operator):
],
name="Set Type of Input",
)
- target_length = FloatProperty(
+ target_length: FloatProperty(
name="Target Length",
description="Input a value for an Edges Length target",
default=1.00,
unit='LENGTH',
precision=5
)
- existing_length = EnumProperty(
+ existing_length: EnumProperty(
items=[
('min', "Shortest",
"Set all to shortest Edge of selection"),
@@ -98,7 +98,7 @@ class LengthSet(Operator):
],
name="Existing length"
)
- mode = EnumProperty(
+ mode: EnumProperty(
items=[
('fixed', "Fixed", "Fixed"),
('increment', "Increment", "Increment"),
@@ -106,7 +106,7 @@ class LengthSet(Operator):
],
name="Mode"
)
- behaviour = EnumProperty(
+ behaviour: EnumProperty(
items=[
('proportional', "Proportional",
"Move vertex locations proportionally to the center of the Edge"),