1 |
|
5 |
#ifndef Rec_sommetH
|
2 |
|
|
#define Rec_sommetH
|
3 |
|
|
|
4 |
|
|
|
5 |
louhichi |
211 |
|
6 |
francois |
481 |
#include "rec_brep.h"
|
7 |
|
5 |
#include "mg_sommet.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_SOMMET: public REC_BREP
|
23 |
|
|
{
|
24 |
|
|
public:
|
25 |
couturad |
740 |
REC_SOMMET(FEM_MAILLAGE* mgmai, int Idealise, OCC_FONCTION_RECONSTRUCTION& fonc);
|
26 |
|
5 |
|
27 |
|
|
virtual ~REC_SOMMET();
|
28 |
|
|
|
29 |
louhichi |
211 |
void Reconstruire(MG_SOMMET* Sommet, double coef);
|
30 |
|
|
void Enregistrer(char *path);
|
31 |
|
5 |
|
32 |
|
|
private:
|
33 |
|
|
|
34 |
|
|
} ;
|
35 |
|
|
|
36 |
|
|
#endif
|
37 |
|
|
|
38 |
|
|
|