ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/polyexemple/src/circle.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: 287 byte(s)
Log Message:
Import initial

File Contents

# Content
1 #ifndef _CIRCLE_
2 #define _CIRCLE_
3
4 #include "curve.h"
5
6 class CIRCLE : public CURVE
7 {
8 public:
9 CIRCLE(double *cent,double rad);
10 CIRCLE(CIRCLE &mdd);
11 virtual ~CIRCLE();
12
13 virtual void evaluer(double t,double *xyz);
14
15 protected:
16 double center[3];
17 double radius;
18 };
19
20 #endif

Properties

Name Value
svn:executable