#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include "ReadMesh.h"
Aller au code source de ce fichier.
|
enum | MeshLoad::KeyWord {
MeshLoad::MeshVersion,
MeshLoad::Dimension,
MeshLoad::Vertices,
MeshLoad::Triangles,
MeshLoad::Quadrilaterals,
MeshLoad::Tetrahedra,
MeshLoad::Hexahedra,
MeshLoad::Edges,
MeshLoad::Corners,
MeshLoad::RequiredVertices,
MeshLoad::Ridges,
MeshLoad::RequiredEdges,
MeshLoad::Normals,
MeshLoad::Tangents,
MeshLoad::NormalAtVertices,
MeshLoad::NormalAtTriangleVertices,
MeshLoad::NormalAtQuadrilateralsVertices,
MeshLoad::NormalAtEdges,
MeshLoad::End,
MeshLoad::Comment,
MeshLoad::Error
} |
|
enum | MeshLoad::MeKeyWord {
MeshLoad::NbMaterial,
MeshLoad::NbMaterials,
MeshLoad::MeMaterial,
MeshLoad::MeEnd,
MeshLoad::MeComment,
MeshLoad::MeOther
} |
|
|
const int | MeshLoad::nKeyWord = 21 |
|
const char | MeshLoad::KeyWordStr [nKeyWord][32] |
|
KeyWord | MeshLoad::KeyWordLst [nKeyWord] |
|
const int | MeshLoad::nMeKeyWord = 6 |
|
const char | MeshLoad::MeKeyWordStr [nMeKeyWord][12] = { "NbMaterial", "NbMaterials", "Material", "End", "Comment", "Other" } |
|
MeKeyWord | MeshLoad::MeKeyWordLst [nMeKeyWord] = { NbMaterial, NbMaterials, MeMaterial, MeEnd, MeComment, MeOther } |
|
#define _CRT_SECURE_NO_WARNINGS |
#define SAFE_ARRAY_DELETE |
( |
|
x | ) |
{ if (x!=NULL) { delete [] x; x=NULL; } } |
#define SAFE_DELETE |
( |
|
x | ) |
{ if (x!=NULL) { delete x; x=NULL; } } |