Overture  Version 25
MatchingCurve.h
Go to the documentation of this file.
1 #ifndef MATCHING_CURVE_H
2 #define MATCHING_CURVE_H
3 
4 #include "Mapping.h"
5 
7 
9 {
10 public:
12 MatchingCurve(const MatchingCurve & mc);
14 
16 operator=(const MatchingCurve & mc );
17 
18 void setCurve( Mapping & curve );
19 
20 // change parameters interactively
22 
23 real x[3]; // x position
24 real curvePosition; // r coordinate on the start curve where matching curve starts
26 int curveDirection; // match when growing in this direction (forward=1 or backward=-1 or both=0)
27 Mapping *curve; // project grid line onto this mapping.
30 
31 };
32 
33 #endif