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

File Contents

# Content
1 #ifndef _POLYCRISTAL_
2 #define _POLYCRISTAL_
3
4 #include <vector>
5
6 class Poly_Point;
7
8 class Polycristal
9 {
10 public:
11 Polycristal(char *fichier);
12 Polycristal(int nbParticules);
13
14 Polycristal(Polycristal& mdd);
15 ~Polycristal();
16
17 std::vector<Poly_Point*> random_particules(int nbParticules);
18
19 protected:
20
21
22 };
23
24 #endif // _POLYCRISTAL_