1 |
|
5 |
#ifndef Rec_faceH
|
2 |
|
|
#define Rec_faceH
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
#include <atl\atlmod.h>
|
6 |
|
|
#include "mg_maillage.h"
|
7 |
|
|
#include "mg_geometrie.h"
|
8 |
|
|
#include "Rec_BREP.h"
|
9 |
|
|
|
10 |
|
|
//------------------------------------------------------------------------------
|
11 |
|
|
|
12 |
|
|
#ifdef WINDOWS_VERSION
|
13 |
|
|
#ifdef BUILT_DLL_RECONSTRUCTION
|
14 |
|
|
#define DLLPORTRECONSTRUCTION __declspec(dllexport)
|
15 |
|
|
#else
|
16 |
|
|
#define DLLPORTRECONSTRUCTION __declspec(dllimport)
|
17 |
|
|
#endif
|
18 |
|
|
#else
|
19 |
|
|
#define DLLPORTRECONSTRUCTION
|
20 |
|
|
#endif
|
21 |
|
|
|
22 |
|
|
|
23 |
|
|
class DLLPORTRECONSTRUCTION REC_FACE : public REC_BREP
|
24 |
|
|
{
|
25 |
|
|
public:
|
26 |
|
|
REC_FACE(FEM_MAILLAGE* fem_mai0,FEM_MAILLAGE *fem_mai1, int Idealise, int test, int* faces);
|
27 |
|
|
|
28 |
|
|
virtual ~REC_FACE();
|
29 |
|
|
|
30 |
|
|
void REC_FACE::Reconstruire(MG_FACE* face);
|
31 |
|
|
void REC_FACE::Enregistrer(char *path);
|
32 |
|
|
|
33 |
|
|
protected:
|
34 |
|
|
|
35 |
|
|
int testo;
|
36 |
|
|
int* faceso;
|
37 |
|
|
|
38 |
|
|
} ;
|
39 |
|
|
|
40 |
|
|
#endif
|
41 |
|
|
|
42 |
|
|
|