Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
OpenMesh
Commits
4826d46c
Commit
4826d46c
authored
May 30, 2017
by
Martin Schultz
Browse files
fix boundary case for TriMeshSplit1_4
parent
47fcf4ed
Pipeline
#5128
passed with stage
in 42 minutes and 17 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/OpenMesh/Core/Mesh/TriMeshT.hh
View file @
4826d46c
...
...
@@ -368,9 +368,9 @@ public:
VertexHandle
v1
=
this
->
add_vertex
(
new1
);
VertexHandle
v2
=
this
->
add_vertex
(
new2
);
const
bool
split0
=
!
this
->
is_boundary
(
h
e0
);
const
bool
split1
=
!
this
->
is_boundary
(
h
e1
);
const
bool
split2
=
!
this
->
is_boundary
(
h
e2
);
const
bool
split0
=
!
this
->
is_boundary
(
e
h
0
);
const
bool
split1
=
!
this
->
is_boundary
(
e
h
1
);
const
bool
split2
=
!
this
->
is_boundary
(
e
h
2
);
// delete original face
this
->
delete_face
(
_fh
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment