This commit is contained in:
Andreas Fabri 2014-04-11 09:46:42 +02:00
parent ce2ead8a20
commit e9edf5efac
1 changed files with 2 additions and 2 deletions

View File

@ -156,7 +156,7 @@ void Edge_profile<ECM>::Extract_triangles_and_link()
} }
v2 = v; v2 = v;
} }
if(v != vR()){ if(v != vR() && (v!= vertex_descriptor())){
mLink.push_back(v); mLink.push_back(v);
} }
@ -173,7 +173,7 @@ void Edge_profile<ECM>::Extract_triangles_and_link()
} }
v2 = v; v2 = v;
} }
if(v != vL()){ if(v != vL() && (v!= vertex_descriptor())){
mLink.push_back(v); mLink.push_back(v);
} }