ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/mailleur/src/mailleur3d_peau.h
Revision: 420
Committed: Thu Sep 12 22:51:58 2013 UTC (11 years, 8 months ago) by francois
Content type: text/plain
File size: 569 byte(s)
Log Message:
Creation d'un mailleur 3D d'une enveloppe triangulee et orientee non attachee à une geometrie

File Contents

# User Rev Content
1 francois 420 #ifndef mailleur3dpeauH
2     #define mailleur3dpeauH
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_PEAU:public MAILLEUR3D
21     {
22     public:
23     MAILLEUR3D_PEAU(MG_MAILLAGE* mgmai,MG_GEOMETRIE *mggeo,MG_VOLUME* mgvol=NULL,FCT_TAILLE* fct_taille=NULL);
24     virtual ~MAILLEUR3D_PEAU();
25    
26    
27     protected:
28     void cree_front(MG_VOLUME* mgvol);
29     };
30    
31    
32    
33    
34    
35     #endif