ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/magic/poly_occ/src/poly_noeud.cpp
Revision: 979
Committed: Thu Oct 18 23:40:32 2018 UTC (6 years, 6 months ago) by francois
Original Path: poly_occ/src/poly_noeud.cpp
File size: 372 byte(s)
Log Message:
creation de polycristaux avec OCC

File Contents

# User Rev Content
1 francois 979 #include "poly_noeud.h"
2    
3     Poly_Noeud::Poly_Noeud(int numm, double x, double y, double z) : num(numm), Poly_Point(x,y,z)
4     {
5     }
6    
7     Poly_Noeud::Poly_Noeud(Poly_Noeud& mdd): num(mdd.num), Poly_Point(mdd)
8     {
9     }
10    
11     Poly_Noeud::~Poly_Noeud()
12     {
13     }
14    
15     //
16     // GET
17     //
18     int Poly_Noeud::get_num(void){ return num; }
19    
20     //
21     // SET
22     //
23     void Poly_Noeud::set_num(int val){ num = val; }