mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-26 05:50:32 +05:00
segmentindex is 0 based
This commit is contained in:
parent
15e68020ba
commit
c33feee970
@ -2150,7 +2150,7 @@ namespace netgen
|
||||
}
|
||||
if(mesh.GetDimension() == 2)
|
||||
{
|
||||
for (SegmentIndex j=1; j<=mesh.GetNSeg(); j++)
|
||||
for (SegmentIndex j=0; j<mesh.GetNSeg(); j++)
|
||||
{
|
||||
auto seg = mesh[j];
|
||||
for (auto map : idmaps)
|
||||
|
Loading…
Reference in New Issue
Block a user