ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/mailleur/src/mailleur3d_recuperation.h
Revision: 558
Committed: Fri Oct 3 21:35:13 2014 UTC (10 years, 7 months ago) by francois
Content type: text/plain
Original Path: magic/lib/mailleur_auto/src/mailleur3d_recuperation.h
File size: 666 byte(s)
Log Message:
robustesse des mailleurs 3D amélioree

File Contents

# User Rev Content
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