source: Sophya/trunk/SophyaPI/PIext/pigfd2.h@ 179

Last change on this file since 179 was 165, checked in by ercodmgr, 27 years ago

Creation du module PIext en regroupant des fichiers de Drawer/Wdg pour
Objets ds PEIDA/Outils++, Images++, ... et des classes de ProgPI,
lie a piapp (PIStdImgApp, NamedObjMgr, ...) Reza 18/12/98

File size: 675 bytes
Line 
1#ifndef PIGFD2_H
2#define PIGFD2_H
3
4#include "generaldata.h"
5#include "pi3ddrw.h"
6
7class PIGenFitDat3D : public PIDrawer3D {
8public:
9 PIGenFitDat3D(GeneralFitData* gfd, bool ad);
10 virtual ~PIGenFitDat3D();
11
12 virtual void Draw(PIGraphicUC* g, float xmin, float ymin, float xmax, float ymax);
13 virtual void UpdateLimits();
14
15 void SelectXY(int varx,int vary);
16 void SelectErrBar(bool erbx,bool erby,bool erbz);
17
18
19protected:
20 GeneralFitData* mGFD;
21 bool mAdDO;
22 int VarX,VarY; // numero de variable X,Y ds le GeneralFitData
23 bool ErrX,ErrY,ErrZ; // Erreur en X,Y et Z?
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.