#ifndef ROOT_TGLAxis
#define ROOT_TGLAxis
#ifndef ROOT_TAttText
#include "TAttText.h"
#endif
#ifndef ROOT_TAttLine
#include "TAttLine.h"
#endif
class TString;
class TGLText;
class TGLAxis : public TAttLine, public TAttText {
private:
TGLAxis(const TGLAxis&);
TGLAxis& operator=(const TGLAxis&);
Int_t fNDiv;
Int_t fNDiv1;
Int_t fNDiv2;
Int_t fNDiv3;
Int_t fNTicks1;
Int_t fNTicks2;
Double_t *fTicks1;
Double_t *fTicks2;
TString *fLabels;
Double_t fAxisLength;
Double_t fWmin;
Double_t fWmax;
Double_t fTickMarksLength;
Int_t fTickMarksOrientation;
Double_t fLabelsOffset;
Double_t fLabelsSize;
Double_t fGridLength;
TGLText *fText;
Double_t fAngle1;
Double_t fAngle2;
Double_t fAngle3;
public:
TGLAxis();
virtual ~TGLAxis();
void PaintGLAxis (const Double_t p1[3], const Double_t p2[3],
Double_t wmin , Double_t wmax , Int_t ndiv,
Option_t *opt="");
void Init ();
void PaintGLAxisBody ();
void PaintGLAxisTickMarks ();
void PaintGLAxisLabels ();
void TicksPositions (Option_t *opt="");
void TicksPositionsNoOpt ();
void TicksPositionsOpt ();
void DoLabels ();
void SetTickMarksLength (Double_t length){fTickMarksLength = length;}
void SetTickMarksOrientation (Int_t tmo){fTickMarksOrientation = tmo;}
void SetLabelsOffset (Double_t offset){fLabelsOffset = offset;}
void SetLabelsSize (Double_t size){fLabelsSize = size;}
void SetGridLength (Double_t grid){fGridLength = grid;}
void SetLabelsAngles (Double_t a1, Double_t a2, Double_t a3);
ClassDef(TGLAxis,0)
};
#endif
Last change: Wed Jun 25 08:40:43 2008
Last generated: 2008-06-25 08:40
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.