#ifndef ROOT_TArc
#define ROOT_TArc
#ifndef ROOT_TEllipse
#include "TEllipse.h"
#endif
class TArc : public TEllipse {
public:
   TArc();
   TArc(Double_t x1, Double_t y1,Double_t radius
      , Double_t phimin=0,Double_t phimax=360);
   TArc(const TArc &arc);
   virtual ~TArc();
   void Copy(TObject &arc) const;
   virtual void DrawArc(Double_t x1, Double_t y1, Double_t radius
                       ,Double_t  phimin=0, Double_t  phimax=360, Option_t *option="");
   virtual void SavePrimitive(ostream &out, Option_t *option = "");
   ClassDef(TArc,1)  
};
#endif
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.