Warning, file /include/root/TArc.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TArc
0013 #define ROOT_TArc
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024 #include "TEllipse.h"
0025
0026 class TArc : public TEllipse {
0027
0028 public:
0029 TArc();
0030 TArc(Double_t x1, Double_t y1,Double_t radius
0031 , Double_t phimin=0,Double_t phimax=360);
0032 TArc(const TArc &arc);
0033 ~TArc() override;
0034
0035 void Copy(TObject &arc) const override;
0036 virtual TArc *DrawArc(Double_t x1, Double_t y1, Double_t radius
0037 ,Double_t phimin=0, Double_t phimax=360, Option_t *option="");
0038 void SavePrimitive(std::ostream &out, Option_t *option = "") override;
0039
0040 ClassDefOverride(TArc,1)
0041 };
0042
0043 #endif