Skip to content
Snippets Groups Projects
Commit 04bd295d authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed netgen writer

parent 3144b008
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,8 @@
#include <sstream>
#include <iomanip>
#include <TNL/String.h>
namespace TNL {
namespace Meshes {
......@@ -41,7 +43,7 @@ class MeshWriterNetgen
return false;
}
outputFile << std::setprecision( 6 );
outputFile << fixed;
outputFile << std::fixed;
const int meshDimension = MeshType::meshDimension;
typedef typename MeshType::template EntitiesTraits< 0 >::GlobalIndexType VerticesIndexType;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment