#ifndef ROOT_TLine
#define ROOT_TLine
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TAttLine
#include "TAttLine.h"
#endif
class TLine : public TObject, public TAttLine {
protected:
Double_t fX1;
Double_t fY1;
Double_t fX2;
Double_t fY2;
public:
enum {
kLineNDC = BIT(14),
kVertical = BIT(15),
kHorizontal = BIT(16)
};
TLine();
TLine(Double_t x1, Double_t y1,Double_t x2, Double_t y2);
TLine(const TLine &line);
virtual ~TLine();
void Copy(TObject &line) const;
virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
virtual TLine *DrawLine(Double_t x1, Double_t y1,Double_t x2, Double_t y2);
virtual TLine *DrawLineNDC(Double_t x1, Double_t y1,Double_t x2, Double_t y2);
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
Double_t GetX1() const {return fX1;}
Double_t GetX2() const {return fX2;}
Double_t GetY1() const {return fY1;}
Double_t GetY2() const {return fY2;}
Bool_t IsHorizontal();
Bool_t IsVertical();
virtual void ls(Option_t *option="") const;
virtual void Paint(Option_t *option="");
virtual void PaintLine(Double_t x1, Double_t y1,Double_t x2, Double_t y2);
virtual void PaintLineNDC(Double_t u1, Double_t v1,Double_t u2, Double_t v2);
virtual void Print(Option_t *option="") const;
virtual void SavePrimitive(ostream &out, Option_t *option = "");
void SetHorizontal(Bool_t set = kTRUE);
void SetVertical(Bool_t set = kTRUE);
virtual void SetX1(Double_t x1) {fX1=x1;}
virtual void SetX2(Double_t x2) {fX2=x2;}
virtual void SetY1(Double_t y1) {fY1=y1;}
virtual void SetY2(Double_t y2) {fY2=y2;}
ClassDef(TLine,2)
};
#endif
Last change: Wed Jun 25 08:47:57 2008
Last generated: 2008-06-25 08:47
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.