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
06d30213
Commit
06d30213
authored
6 years ago
by
mano-wii
Browse files
Options
Downloads
Patches
Plain Diff
mesh_snap_utilities_line: fix face creation
parent
f6819fe2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
mesh_snap_utilities_line/ops_line.py
+3
-8
3 additions, 8 deletions
mesh_snap_utilities_line/ops_line.py
with
3 additions
and
8 deletions
mesh_snap_utilities_line/ops_line.py
+
3
−
8
View file @
06d30213
...
...
@@ -182,14 +182,9 @@ def draw_line(self, bm_geom, location):
if
self
.
create_face
:
ed_list
=
set
(
self
.
list_edges
)
for
edge
in
v2
.
link_edges
:
if
edge
not
in
ed_list
:
if
edge
.
other_vert
(
v2
)
in
self
.
list_verts
:
ed_list
.
add
(
edge
)
break
else
:
continue
# Inner loop had a break, break the outer
break
if
edge
not
in
ed_list
and
edge
.
other_vert
(
v2
)
in
self
.
list_verts
:
ed_list
.
add
(
edge
)
break
ed_list
.
update
(
get_loose_linked_edges
(
v2
))
...
...
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