ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/mailleur/src/mailleur3d_structure.h
Revision: 463
Committed: Fri Nov 15 00:14:00 2013 UTC (11 years, 6 months ago) by chebbi
Content type: text/plain
File size: 587 byte(s)
Log Message:
Ajout d'un mailleur structuré

File Contents

# User Rev Content
1 chebbi 463 #ifndef __MAILLEUR3D_STRUCTURE_
2     #define __MAILLEUR3D_STRUCTURE_
3     #include "mailleur.h"
4    
5     class MG_GESTIONNAIRE;
6     class MAILLEUR3D_STRUCTURE:public MAILLEUR
7     {
8     public:
9     MAILLEUR3D_STRUCTURE( double xmintmp, double xmaxtmp, double ymintmp, double ymaxtmp, double zmintmp, double zmaxtmp,
10     int ntmp, int mtmp, int ktmp,MG_GESTIONNAIRE* gesttmp);
11     MAILLEUR3D_STRUCTURE( MAILLEUR3D_STRUCTURE &mdd);
12     virtual ~MAILLEUR3D_STRUCTURE();
13     void maille(void);
14    
15    
16     private:
17     double xmin;
18     double xmax;
19     double ymin;
20     double ymax;
21     double zmin;
22     double zmax;
23     int n;
24     int m;
25     int k;
26     MG_GESTIONNAIRE* gest;
27     };
28     #endif