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