ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/lib/reconstruction/src/rec_contour.h
Revision: 740
Committed: Wed Sep 30 22:24:50 2015 UTC (9 years, 7 months ago) by couturad
Content type: text/plain
File size: 765 byte(s)
Log Message:
Ajout d'assemblage dans un arbre caractéristique
Modification de la gestion des id de occ avec retro-compatibilité
script adaptable au assemblage

File Contents

# User Rev Content
1 5 #ifndef Rec_ContourH
2     #define Rec_ContourH
3    
4    
5 francois 481 #include "rec_face.h"
6 5
7     //------------------------------------------------------------------------------
8    
9     #ifdef WINDOWS_VERSION
10     #ifdef BUILT_DLL_RECONSTRUCTION
11     #define DLLPORTRECONSTRUCTION __declspec(dllexport)
12     #else
13     #define DLLPORTRECONSTRUCTION __declspec(dllimport)
14     #endif
15     #else
16     #define DLLPORTRECONSTRUCTION
17     #endif
18    
19    
20    
21     class DLLPORTRECONSTRUCTION REC_CONTOUR : public REC_FACE
22    
23     {
24     public:
25 couturad 740 REC_CONTOUR(FEM_MAILLAGE* fem_mai, int Idealise, OCC_FONCTION_RECONSTRUCTION& fonc, int test, int* faces);
26 5
27     virtual ~REC_CONTOUR();
28    
29 louhichi 211 void Reconstruire(MG_BOUCLE* Boucle, double coef);
30     void Enregistrer(char *fich);
31 5
32     private:
33    
34    
35    
36     } ;
37    
38     #endif
39    
40