ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/poly_occ/src/polycristal.h
(Generate patch)

Comparing poly_occ/src/polycristal.h (file contents):
Revision 983 by francois, Wed Oct 24 17:41:40 2018 UTC vs.
Revision 1007 by francois, Mon Mar 25 16:36:48 2019 UTC

# Line 3 | Line 3
3  
4   #include <vector>
5   #include <string>
6 + #include "poly_affiche.h"
7  
8   class Poly_Point;
9  
10 < class Polycristal
10 > class Polycristal: public POLY_AFFICHE
11   {
12      public:
13 <        Polycristal(char *fichier);
14 <        Polycristal(int nbParticules);
15 <        Polycristal(std::vector<double> &listepoint,std::string nom);
13 >        Polycristal(char *fichier,double dgval);
14 >        Polycristal(int nbParticules,double dgval);
15 >        Polycristal(std::vector<double> &listepoint,std::string nom,double dgva);
16          
17 <        Polycristal(Polycristal& mdd);
17 >        
18 >        
19 >        
20 >      
21          ~Polycristal();
22  
23          std::vector<Poly_Point*> random_particules(int nbParticules);
24 +        virtual void construit(bool avecstep=false);
25  
26      protected:
27        std::string nomfichier;
28 <
28 >      double dg;  
29 >      
30 >      std::vector<Poly_Point*> list_points;
31 >
32 >    private:
33 >     Polycristal(Polycristal& mdd);
34 >      
35          
36   };
37  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines