1 |
|
5 |
#ifndef Rec_BREPH
|
2 |
|
|
#define Rec_BREPH
|
3 |
|
|
|
4 |
|
|
|
5 |
|
|
//------------------------------------------------------------------------------
|
6 |
|
|
|
7 |
|
|
#ifdef WINDOWS_VERSION
|
8 |
|
|
#ifdef BUILT_DLL_RECONSTRUCTION
|
9 |
|
|
#define DLLPORTRECONSTRUCTION __declspec(dllexport)
|
10 |
|
|
#else
|
11 |
|
|
#define DLLPORTRECONSTRUCTION __declspec(dllimport)
|
12 |
|
|
#endif
|
13 |
|
|
#else
|
14 |
|
|
#define DLLPORTRECONSTRUCTION
|
15 |
|
|
#endif
|
16 |
|
|
|
17 |
|
|
|
18 |
couturad |
740 |
#include "occ_fonction_reconstruction.h"
|
19 |
louhichi |
211 |
|
20 |
|
|
|
21 |
|
|
|
22 |
|
5 |
class DLLPORTRECONSTRUCTION REC_BREP
|
23 |
|
|
{
|
24 |
|
|
public:
|
25 |
louhichi |
211 |
|
26 |
|
|
|
27 |
|
|
|
28 |
couturad |
740 |
REC_BREP(class FEM_MAILLAGE* fem_mai, int Idealise, OCC_FONCTION_RECONSTRUCTION& fonc);
|
29 |
|
5 |
virtual ~REC_BREP();
|
30 |
|
|
|
31 |
|
|
|
32 |
|
|
|
33 |
louhichi |
211 |
void Reconstruire(double coef=1.0);
|
34 |
|
|
virtual void Enregistrer(char *path);
|
35 |
|
|
|
36 |
|
|
|
37 |
|
|
|
38 |
|
5 |
protected:
|
39 |
|
|
|
40 |
louhichi |
211 |
FEM_MAILLAGE* fem_maillage;
|
41 |
|
5 |
int Idealiser;
|
42 |
|
|
|
43 |
|
|
|
44 |
couturad |
740 |
OCC_FONCTION_RECONSTRUCTION& fonction;
|
45 |
|
5 |
|
46 |
louhichi |
211 |
|
47 |
|
5 |
} ;
|
48 |
|
|
#endif
|
49 |
|
|
|
50 |
|
|
|