ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/polyexemple/src/line.h
Revision: 416
Committed: Wed Aug 21 15:24:24 2013 UTC (11 years, 8 months ago) by cuillier
Content type: text/plain
File size: 280 byte(s)
Log Message:
Import initial

File Contents

# User Rev Content
1 cuillier 416 #ifndef _LINE_
2     #define _LINE_
3    
4     #include "curve.h"
5    
6     class LINE : public CURVE
7     {
8     public:
9     LINE(double *ori,double *dir);
10     LINE(LINE &mdd);
11     virtual ~LINE();
12    
13     virtual void evaluer(double t,double *xyz);
14    
15     protected:
16     double origine[3];
17     double direction[3];
18     };
19    
20     #endif

Properties

Name Value
svn:executable