Revision: | 979 |
Committed: | Thu Oct 18 23:40:32 2018 UTC (6 years, 6 months ago) by francois |
Content type: | text/plain |
File size: | 467 byte(s) |
Log Message: | creation de polycristaux avec OCC |
# | User | Rev | Content |
---|---|---|---|
1 | francois | 979 | #ifndef _POLY_POINT_ |
2 | #define _POLY_POINT_ | ||
3 | |||
4 | class Poly_Point | ||
5 | { | ||
6 | public: | ||
7 | Poly_Point(double xx, double yy, double zz); | ||
8 | Poly_Point(Poly_Point &mdd); | ||
9 | ~Poly_Point(); | ||
10 | |||
11 | double get_x(void); | ||
12 | double get_y(void); | ||
13 | double get_z(void); | ||
14 | |||
15 | void set_x(double val); | ||
16 | void set_y(double val); | ||
17 | void set_z(double val); | ||
18 | |||
19 | protected: | ||
20 | double x; | ||
21 | double y; | ||
22 | double z; | ||
23 | }; | ||
24 | |||
25 | #endif // _POLY_POINT_ |