Logo ROOT   6.08/07
Reference Guide
TPoints.h
Go to the documentation of this file.
1 // @(#)root/graf:$Id$
2 // Author: Rene Brun 23/02/95
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TPoints
13 #define ROOT_TPoints
14 
15 
16 #ifndef ROOT_Rtypes
17 #include "Rtypes.h"
18 #endif
19 
20 
21 class TPoints {
22 
23 private:
24  Double_t fX; ///< X world coordinate
25  Double_t fY; ///< Y world coordinate
26 
27 public:
28  TPoints() : fX(0), fY(0) { }
29  TPoints(Double_t xy) : fX(xy), fY(xy) { }
30  TPoints(Double_t x, Double_t y) : fX(x), fY(y) { }
31  virtual ~TPoints() { }
32  Double_t GetX() const { return fX; }
33  Double_t GetY() const { return fY; }
34  void SetX(Double_t x) { fX = x; }
35  void SetY(Double_t y) { fY = y; }
36 
37  ClassDef(TPoints,0) //2-D graphics point
38 };
39 
40 #endif
void SetY(Double_t y)
Definition: TPoints.h:35
Double_t fX
X world coordinate.
Definition: TPoints.h:24
Double_t GetX() const
Definition: TPoints.h:32
Double_t x[n]
Definition: legend1.C:17
#define ClassDef(name, id)
Definition: Rtypes.h:254
TPoints(Double_t x, Double_t y)
Definition: TPoints.h:30
virtual ~TPoints()
Definition: TPoints.h:31
XPoint xy[kMAXMK]
Definition: TGX11.cxx:122
TPoints()
Definition: TPoints.h:28
TPoints(Double_t xy)
Definition: TPoints.h:29
2-D graphics point (world coordinates).
Definition: TPoints.h:21
double Double_t
Definition: RtypesCore.h:55
Double_t fY
Y world coordinate.
Definition: TPoints.h:25
Double_t y[n]
Definition: legend1.C:17
void SetX(Double_t x)
Definition: TPoints.h:34
Double_t GetY() const
Definition: TPoints.h:33