|
MeshKit
1.0
|
#include <Mesh.hpp>
Public Member Functions | |
| Mesh * | load (const string &fname, Mesh *m=NULL) |
Static Public Attributes | |
| static const int | SIMPLE_FORMAT = 0 |
| static const int | OFF_FORMAT = 1 |
| static const int | OBJ_FORMAT = 2 |
| static const int | VTK_FORMAT = 3 |
| static const int | TRIANGLE_FORMAT = 4 |
| static const int | CUBIT_FORMAT = 5 |
Private Member Functions | |
| void | readTriNodes (const string &s) |
| void | readTriEdges (const string &s) |
| void | readTriFaces (const string &s) |
| int | vtk_file (const string &s) |
| int | off_file (const string &s) |
| int | simple_file (const string &s) |
| int | triangle_file (const string &s) |
| int | xml_file (const string &s) |
| int | cubit_file (const string &s) |
Private Attributes | |
| Mesh * | mesh |
| std::map< int, int > | global2local |
| int cubit_file | ( | const string & | s | ) | [private] |
Definition at line 8 of file cubit_io.cpp.
| int off_file | ( | const string & | s | ) | [private] |
Definition at line 26 of file off_io.cpp.
| void readTriEdges | ( | const string & | s | ) | [private] |
Definition at line 45 of file tri_io.cpp.
| void readTriFaces | ( | const string & | s | ) | [private] |
Definition at line 76 of file tri_io.cpp.
| void readTriNodes | ( | const string & | s | ) | [private] |
Definition at line 7 of file tri_io.cpp.
| int simple_file | ( | const string & | s | ) | [private] |
Definition at line 84 of file mesh_io.cpp.
| int triangle_file | ( | const string & | s | ) | [private] |
Definition at line 138 of file tri_io.cpp.
| int vtk_file | ( | const string & | s | ) | [private] |
Definition at line 62 of file vtk_io.cpp.
| int xml_file | ( | const string & | s | ) | [private] |
Definition at line 6 of file xml_io.cpp.
const int CUBIT_FORMAT = 5 [static] |
std::map<int, int> global2local [private] |
const int OBJ_FORMAT = 2 [static] |
const int OFF_FORMAT = 1 [static] |
const int SIMPLE_FORMAT = 0 [static] |
const int TRIANGLE_FORMAT = 4 [static] |
const int VTK_FORMAT = 3 [static] |