Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Plugin-MeshRepair
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
OpenFlipper-Free
Plugin-MeshRepair
Merge requests
!1
make sure the two types in replace match
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
make sure the two types in replace match
replace_types
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Max Lyon
requested to merge
replace_types
into
master
5 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
8634ef3c
1 commit,
5 years ago
1 file
+
1
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
NonManifoldVertexFixingT_impl.hh
+
1
−
1
Options
@@ -148,7 +148,7 @@ void NonManifoldVertexFixingT<MeshT>::fix()
@@ -148,7 +148,7 @@ void NonManifoldVertexFixingT<MeshT>::fix()
//if one face wasn't found in the component = 1 run, then it is a new component, due to split
//if one face wasn't found in the component = 1 run, then it is a new component, due to split
if
(
componentCount
>
1
&&
v_new
.
is_valid
())
if
(
componentCount
>
1
&&
v_new
.
is_valid
())
{
{
std
::
replace
(
f_vertices
.
begin
(),
f_vertices
.
end
(),
*
v_iter
,
v_new
);
std
::
replace
(
f_vertices
.
begin
(),
f_vertices
.
end
(),
typename
MeshT
::
VertexHandle
(
*
v_iter
)
,
v_new
);
mesh_
.
delete_face
(
face
,
false
);
mesh_
.
delete_face
(
face
,
false
);
mesh_
.
add_face
(
f_vertices
);
mesh_
.
add_face
(
f_vertices
);
Loading