mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-27 06:10:34 +05:00
respect 2nd order segment when exporting neutral format
This commit is contained in:
parent
ee476e154d
commit
792ff477be
@ -250,7 +250,11 @@ void WriteNeutralFormat (const Mesh & mesh,
|
|||||||
outfile << " ";
|
outfile << " ";
|
||||||
outfile.width(8);
|
outfile.width(8);
|
||||||
outfile << seg[1];
|
outfile << seg[1];
|
||||||
|
if (seg[2] != -1)
|
||||||
|
{
|
||||||
|
outfile.width(8);
|
||||||
|
outfile << seg[2];
|
||||||
|
}
|
||||||
outfile << "\n";
|
outfile << "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user