Revision: | 416 |
Committed: | Wed Aug 21 15:24:24 2013 UTC (11 years, 8 months ago) by cuillier |
Content type: | text/plain |
File size: | 295 byte(s) |
Log Message: | Import initial |
# | Content |
---|---|
1 | #ifndef _SEGMENT_ |
2 | #define _SEGMENT_ |
3 | |
4 | #include "line.h" |
5 | |
6 | class SEGMENT : public LINE |
7 | { |
8 | public: |
9 | SEGMENT(double *ori,double *dir,double tb,double te); |
10 | SEGMENT(SEGMENT &mdd); |
11 | virtual ~SEGMENT(); |
12 | |
13 | virtual void evaluer(double t,double *xyz); |
14 | |
15 | protected: |
16 | double t1,t2; |
17 | }; |
18 | |
19 | #endif |
Name | Value |
---|---|
svn:executable |