ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/poly_occ/src/poly_face.h
Revision: 979
Committed: Thu Oct 18 23:40:32 2018 UTC (6 years, 6 months ago) by francois
Content type: text/plain
File size: 391 byte(s)
Log Message:
creation de polycristaux avec OCC

File Contents

# User Rev Content
1 francois 979 #ifndef _POLY_FACE_
2     #define _POLY_FACE_
3    
4     #include <vector>
5    
6     class Poly_Face
7     {
8     public:
9     Poly_Face();
10     Poly_Face(std::vector< int > noeuds);
11     Poly_Face(Poly_Face &mdd);
12     ~Poly_Face();
13    
14     int get_noeud(int num);
15     int get_last_noeud(void);
16     void add_noeud(int numNoeud);
17     int get_nb_noeud(void);
18    
19     protected:
20     std::vector< int > list_noeud;
21     };
22    
23     #endif // _POLY_FACE_