43 lines
1002 B
C++
43 lines
1002 B
C++
#ifndef Poly2dInterpolator_h
|
|
#define Poly2dInterpolator_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 "poly2d.h"
|
|
|
|
class Poly2dInterpolator : public InterleaveAccessor
|
|
{
|
|
public:
|
|
Poly2dInterpolator() :
|
|
InterleaveAccessor()
|
|
{
|
|
}
|
|
virtual
|
|
~Poly2dInterpolator()
|
|
{
|
|
}
|
|
void init(void * poly);
|
|
|
|
|
|
void
|
|
getData(char * buf, int row, int col, int & numEl);
|
|
//the next functions are pure abstract and need to be implemented, so we just create and empty body
|
|
void
|
|
getDataBand(char *buf, int row, int col, int &numEl, int band){}
|
|
void
|
|
setData(char * buf, int row, int col, int numEl){}
|
|
void
|
|
setDataBand(char * buf, int row, int col, int numEl, int band) {}
|
|
protected:
|
|
cPoly2d * poly;
|
|
};
|
|
|
|
#endif //Poly2dInterpolator_h
|