29 lines
682 B
C
29 lines
682 B
C
|
#ifndef RangePolyInterpolator_h
|
||
|
#define RangePolyInterpolator_h
|
||
|
|
||
|
|
||
|
#ifndef MESSAGE
|
||
|
#define MESSAGE cout << "file " << __FILE__ << " line " << __LINE__ << endl;
|
||
|
#endif
|
||
|
#ifndef ERR_MESSAGE
|
||
|
#define ERR_MESSAGE cout << "Error in file " << __FILE__ << " at line " << __LINE__ << " Exiting" << endl; exit(1);
|
||
|
#endif
|
||
|
|
||
|
#include <cmath>
|
||
|
#include "FieldInterpolator.h"
|
||
|
#include "poly1d.h"
|
||
|
|
||
|
class RangePolyInterpolator: public FieldInterpolator
|
||
|
{
|
||
|
public:
|
||
|
RangePolyInterpolator():FieldInterpolator(){}
|
||
|
~RangePolyInterpolator(){cleanPoly1d(&poly);}
|
||
|
|
||
|
double getField(double row, double col);
|
||
|
|
||
|
protected:
|
||
|
cPoly1d poly;
|
||
|
};
|
||
|
|
||
|
#endif //RangePolyInterpolator_h
|