Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
3d1eb9c2
Commit
3d1eb9c2
authored
5 years ago
by
Mikhail Rachinskiy
Browse files
Options
Downloads
Patches
Plain Diff
3D-Print: better property name and description for Make Manifold
parent
86890748
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
object_print3d_utils/operators.py
+6
-6
6 additions, 6 deletions
object_print3d_utils/operators.py
with
6 additions
and
6 deletions
object_print3d_utils/operators.py
+
6
−
6
View file @
3d1eb9c2
...
@@ -427,18 +427,18 @@ class MESH_OT_print3d_clean_distorted(Operator):
...
@@ -427,18 +427,18 @@ class MESH_OT_print3d_clean_distorted(Operator):
class
MESH_OT_print3d_clean_non_manifold
(
Operator
):
class
MESH_OT_print3d_clean_non_manifold
(
Operator
):
bl_idname
=
"
mesh.print3d_clean_non_manifold
"
bl_idname
=
"
mesh.print3d_clean_non_manifold
"
bl_label
=
"
3D-Print Clean Non-Manifold
and Inverted
"
bl_label
=
"
3D-Print Clean Non-Manifold
"
bl_description
=
"
Cleanup problems, like holes, non-manifold vertices and inverted normals
"
bl_description
=
"
Cleanup problems, like holes, non-manifold vertices and inverted normals
"
bl_options
=
{
'
REGISTER
'
,
'
UNDO
'
}
bl_options
=
{
'
REGISTER
'
,
'
UNDO
'
}
threshold
:
bpy
.
props
.
FloatProperty
(
threshold
:
FloatProperty
(
name
=
"
threshold
"
,
name
=
"
Merge Distance
"
,
description
=
"
Minimum distance between elements to merge
"
,
description
=
"
Minimum distance between elements to merge
"
,
default
=
0.0001
,
default
=
0.0001
,
)
)
sides
:
bpy
.
props
.
IntProperty
(
sides
:
IntProperty
(
name
=
"
s
ides
"
,
name
=
"
S
ides
"
,
description
=
"
Number of sides in hole required to fill
"
,
description
=
"
Number of sides in hole required to fill
(zero fills all holes)
"
,
default
=
0
,
default
=
0
,
)
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment