Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
OpenMesh
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
13
Issues
13
List
Boards
Labels
Service Desk
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenMesh
OpenMesh
Commits
4826d46c
Commit
4826d46c
authored
May 30, 2017
by
Martin Schultz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/OpenMesh/Core/Mesh/TriMeshT.hh
src/OpenMesh/Core/Mesh/TriMeshT.hh
+3
-3
No files found.
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
(
he
0
);
const
bool
split1
=
!
this
->
is_boundary
(
he
1
);
const
bool
split2
=
!
this
->
is_boundary
(
he
2
);
const
bool
split0
=
!
this
->
is_boundary
(
eh
0
);
const
bool
split1
=
!
this
->
is_boundary
(
eh
1
);
const
bool
split2
=
!
this
->
is_boundary
(
eh
2
);
// delete original face
this
->
delete_face
(
_fh
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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