mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-26 21:00:34 +05:00
delete edges with negative edgenr in mesh.Compress
This commit is contained in:
parent
408a3efb3c
commit
180ebbda92
@ -3193,6 +3193,10 @@ namespace netgen
|
||||
i--;
|
||||
}
|
||||
|
||||
for(int i=0; i < segments.Size(); i++)
|
||||
if(segments[i].edgenr < 0)
|
||||
segments.Delete(i--);
|
||||
|
||||
pused.Clear();
|
||||
for (int i = 0; i < volelements.Size(); i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user