FEMM/femm/Xyplot.h

17 lines
322 B
C++

class CXYPlot
{
public:
// data members
double **M;
char **lbls;
int NumRows;
int NumCols;
// member functions
CXYPlot();
~CXYPlot();
BOOL Create(int rows, int cols);
void MakePlot(CDC *pDC, char *BoundingBox = NULL);
BOOL ToDisk(int fileformat, CString ToFile = "");
private:
};