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_cut_faces.py')
-rw-r--r--mesh_extra_tools/mesh_cut_faces.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/mesh_extra_tools/mesh_cut_faces.py b/mesh_extra_tools/mesh_cut_faces.py
index cd710a07..195d491f 100644
--- a/mesh_extra_tools/mesh_cut_faces.py
+++ b/mesh_extra_tools/mesh_cut_faces.py
@@ -118,7 +118,7 @@ class MESH_xOT_deselect_boundary(Operator):
"so the tool will not have results")
bl_options = {'REGISTER', 'UNDO'}
- keep_cap_edges = BoolProperty(
+ keep_cap_edges: BoolProperty(
name="Keep Cap Edges",
description="Keep quad strip cap edges selected",
default=False
@@ -164,19 +164,19 @@ class MESH_xOT_cut_faces(Operator):
SUBD_FAN = 2
SUBD_STRAIGHT_CUT = 3
- num_cuts = IntProperty(
+ num_cuts: IntProperty(
name="Number of Cuts",
default=1,
min=1,
max=100,
subtype='UNSIGNED'
)
- use_single_edge = BoolProperty(
+ use_single_edge: BoolProperty(
name="Quad/Tri Mode",
description="Cut boundary faces",
default=False
)
- corner_type = EnumProperty(
+ corner_type: EnumProperty(
items=[('SUBD_INNERVERT', "Inner Vert", ""),
('SUBD_PATH', "Path", ""),
('SUBD_FAN', "Fan", ""),
@@ -186,7 +186,7 @@ class MESH_xOT_cut_faces(Operator):
description="How to subdivide quad corners",
default='SUBD_STRAIGHT_CUT'
)
- use_grid_fill = BoolProperty(
+ use_grid_fill: BoolProperty(
name="Use Grid Fill",
description="Fill fully enclosed faces with a grid",
default=True