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_filletplus.py')
-rw-r--r--mesh_extra_tools/mesh_filletplus.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/mesh_extra_tools/mesh_filletplus.py b/mesh_extra_tools/mesh_filletplus.py
index f3c9cbdf..bc38d2ea 100644
--- a/mesh_extra_tools/mesh_filletplus.py
+++ b/mesh_extra_tools/mesh_filletplus.py
@@ -297,7 +297,7 @@ class MESH_OT_fillet_plus(Operator):
"Note: Works on a mesh whose all faces share the same normal")
bl_options = {"REGISTER", "UNDO"}
- adj = FloatProperty(
+ adj: FloatProperty(
name="",
description="Size of the filleted corners",
default=0.1,
@@ -305,25 +305,25 @@ class MESH_OT_fillet_plus(Operator):
step=1,
precision=3
)
- n = IntProperty(
+ n: IntProperty(
name="",
description="Subdivision of the filleted corners",
default=3,
min=1, max=50,
step=1
)
- out = BoolProperty(
+ out: BoolProperty(
name="Outside",
description="Fillet towards outside",
default=False
)
- flip = BoolProperty(
+ flip: BoolProperty(
name="Flip",
description="Flip the direction of the Fillet\n"
"Only available if Outside option is not active",
default=False
)
- radius = BoolProperty(
+ radius: BoolProperty(
name="Radius",
description="Use radius for the size of the filleted corners",
default=False