#ifndef ROOT_TEveLine
#define ROOT_TEveLine
#include "TEveUtil.h"
#include "TEvePointSet.h"
#include "TAttLine.h"
class TEveLine : public TEvePointSet,
                 public TAttLine
{
   friend class TEveLineEditor;
   friend class TEveLineGL;
private:
   TEveLine(const TEveLine&);            
   TEveLine& operator=(const TEveLine&); 
protected:
   Bool_t  fRnrLine;
   Bool_t  fRnrPoints;
public:
   TEveLine(Int_t n_points=0, ETreeVarType_e tv_type=kTVT_XYZ);
   TEveLine(const Text_t* name, Int_t n_points=0, ETreeVarType_e tv_type=kTVT_XYZ);
   virtual ~TEveLine() {}
   virtual void SetMarkerColor(Color_t col)
   { TAttMarker::SetMarkerColor(col); }
   virtual void SetLineColor(Color_t col)
   { SetMainColor(col); }
   Bool_t GetRnrLine() const   { return fRnrLine;   }
   void SetRnrLine(Bool_t r)   { fRnrLine = r;      }
   Bool_t GetRnrPoints() const { return fRnrPoints; }
   void SetRnrPoints(Bool_t r) { fRnrPoints = r;    }
   ClassDef(TEveLine, 1); 
};
#endif
Last update: Thu Jan 17 08:48:45 2008
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.