ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/mailleur/src/mailleur3d_peau.h
Revision: 1082
Committed: Thu Dec 23 21:17:26 2021 UTC (3 years, 5 months ago) by francois
Content type: text/plain
Original Path: magic/lib/mailleur_auto/src/mailleur3d_peau.h
File size: 615 byte(s)
Log Message:
correction de bug dans le generateur de particule RSA et DCR
+ ajout mailleur_stl (a ameliorer)

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 francois 494 MAILLEUR3D_PEAU(MG_MAILLAGE* mgmai,MG_GEOMETRIE *mggeo,MG_VOLUME* mgvol,FCT_TAILLE* fct_taille,bool save);
24 francois 420 virtual ~MAILLEUR3D_PEAU();
25    
26    
27     protected:
28 francois 1082 virtual void cree_front(MG_VOLUME* mgvol);
29     virtual bool orientation_peau(void);
30 francois 420 };
31    
32    
33    
34    
35    
36 francois 1082 #endif