NuTo
Numerics Tool
XMLWriter.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 namespace NuTo
6 {
7 namespace Visualize
8 {
9 class UnstructuredGrid;
10 
11 class XMLWriter
12 {
13 public:
14  static void Export(std::string filename, const UnstructuredGrid& unstructuredGrid, bool asBinary);
15 };
16 } /* Visualize */
17 } /* NuTo */
Definition: XMLWriter.h:11
visualization of unstructured grids
Definition: UnstructuredGrid.h:18
Definition: Exception.h:6
def Visualize(structure, file)
Definition: Truss1D2N.py:63
static void Export(std::string filename, const UnstructuredGrid &unstructuredGrid, bool asBinary)
Definition: XMLWriter.cpp:137