1 |
francois |
558 |
#ifndef mailleur3drecuperationH |
2 |
|
|
#define mailleur3drecuperationH |
3 |
|
|
|
4 |
|
|
|
5 |
|
|
|
6 |
|
|
#ifdef WINDOWS_VERSION |
7 |
|
|
#ifdef BUILT_DLL_MAILLEUR |
8 |
|
|
#define DLLPORTMAIL __declspec(dllexport) |
9 |
|
|
#else |
10 |
|
|
#define DLLPORTMAIL __declspec(dllimport) |
11 |
|
|
#endif |
12 |
|
|
#else |
13 |
|
|
#define DLLPORTMAIL |
14 |
|
|
#endif |
15 |
|
|
|
16 |
|
|
#include "mailleur3d.h" |
17 |
|
|
|
18 |
|
|
|
19 |
|
|
|
20 |
|
|
class DLLPORTMAIL MAILLEUR3D_RECUPERATION:public MAILLEUR3D |
21 |
|
|
{ |
22 |
|
|
public: |
23 |
|
|
MAILLEUR3D_RECUPERATION(MG_MAILLAGE* mgmai,MG_VOLUME* mgvol,FCT_TAILLE* fct_taille,bool save); |
24 |
|
|
virtual ~MAILLEUR3D_RECUPERATION(); |
25 |
|
|
|
26 |
|
|
|
27 |
|
|
protected: |
28 |
|
|
void cree_front(MG_VOLUME* mgvol); |
29 |
|
|
void recherche_front_triangle(MG_TETRA* tet,class M3D_TRIANGLE* tri,int num); |
30 |
|
|
}; |
31 |
|
|
|
32 |
|
|
|
33 |
|
|
|
34 |
|
|
|
35 |
|
|
|
36 |
|
|
#endif |