Overture  Version 25
Edge.h
Go to the documentation of this file.
1 #ifndef EDGE_H
2 #define EDGE_H
3 
4 #include "NurbsMapping.h"
5 
6 class Edge
7 {
8 public:
9 Edge(); // constructor
10 ~Edge(); // destructor
11 
12 int nKnots;
13 realArray x; // put knots in here
15 
20 
21 };
22 #endif