Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TLine.cxx
Go to the documentation of this file.
1// @(#)root/graf:$Id$
2// Author: Rene Brun 12/12/94
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#include <cstdlib>
13
14#include <iostream>
15#include "TROOT.h"
16#include "TBuffer.h"
17#include "TLine.h"
18#include "TVirtualPad.h"
19#include "TClass.h"
20#include "TVirtualPadPainter.h"
21#include "TCanvasImp.h"
22#include "TMath.h"
23#include "TPoint.h"
24
25
26/** \class TLine
27\ingroup BasicGraphics
28
29Use the TLine constructor to create a simple line.
30
31~~~ {.cpp}
32 TLine(Double_t x1,Double_t y1,Double_t x2,Double_t y2)
33~~~
34
35`x1`, `y1`, `x2`, `y2` are the coordinates of the first and the second point.
36
37_**Example**_:
38
39~~~ {.cpp}
40 root[] l = new TLine(0.2,0.2,0.8,0.3)
41 root[] l->Draw()
42~~~
43*/
44
45
46////////////////////////////////////////////////////////////////////////////////
47/// Line normal constructor.
48
54
55
56////////////////////////////////////////////////////////////////////////////////
57/// Line copy constructor.
58
60{
61 line.TLine::Copy(*this);
62}
63
64////////////////////////////////////////////////////////////////////////////////
65/// Assignment operator
66
68{
69 src.TLine::Copy(*this);
70 return *this;
71}
72
73////////////////////////////////////////////////////////////////////////////////
74/// Copy this line to line.
75
76void TLine::Copy(TObject &obj) const
77{
78 TObject::Copy(obj);
79 TAttLine::Copy(((TLine&)obj));
80 ((TLine&)obj).fX1 = fX1;
81 ((TLine&)obj).fY1 = fY1;
82 ((TLine&)obj).fX2 = fX2;
83 ((TLine&)obj).fY2 = fY2;
84}
85
86////////////////////////////////////////////////////////////////////////////////
87/// Compute distance from point px,py to a line.
88
90{
91 if (!gPad) return 9999;
92 if (!TestBit(kLineNDC)) return DistancetoLine(px,py,gPad->XtoPad(fX1),gPad->YtoPad(fY1),gPad->XtoPad(fX2),gPad->YtoPad(fY2));
93 Double_t x1 = gPad->GetX1() + fX1*(gPad->GetX2()-gPad->GetX1());
94 Double_t y1 = gPad->GetY1() + fY1*(gPad->GetY2()-gPad->GetY1());
95 Double_t x2 = gPad->GetX1() + fX2*(gPad->GetX2()-gPad->GetX1());
96 Double_t y2 = gPad->GetY1() + fY2*(gPad->GetY2()-gPad->GetY1());
97 return DistancetoLine(px,py,x1,y1,x2,y2);
98}
99
100////////////////////////////////////////////////////////////////////////////////
101/// Draw this line with new coordinates.
102
104{
105 TLine *newline = new TLine(x1, y1, x2, y2);
107 newline->SetBit(kCanDelete);
108 newline->AppendPad();
109 return newline;
110}
111
112////////////////////////////////////////////////////////////////////////////////
113/// Draw this line with new coordinates in NDC.
114
121
122////////////////////////////////////////////////////////////////////////////////
123/// Execute action corresponding to one event.
124/// This member function is called when a line is clicked with the locator
125///
126/// If Left button clicked on one of the line end points, this point
127/// follows the cursor until button is released.
128///
129/// if Middle button clicked, the line is moved parallel to itself
130/// until the button is released.
131
133{
134 if (!gPad || !gPad->IsEditable()) return;
135
136 constexpr Int_t kMaxDiff = 20;
137 static Int_t px1,px2,py1,py2,pxold,pyold;
138 static Double_t oldX1, oldY1, oldX2, oldY2;
139 static Int_t selectPoint;
140
141 auto &parent = *gPad;
142
143 Bool_t opaque = parent.OpaqueMoving();
144
145 auto action = [this, &parent](Int_t code, Int_t _x1, Int_t _y1, Int_t _x2 = 0, Int_t _y2 = 0) {
146 Double_t x1, y1, x2, y2;
147
149
150 if (isndc) {
151 x1 = (1. * _x1 / parent.GetWw() - parent.GetAbsXlowNDC()) / parent.GetAbsWNDC();
152 y1 = ((1 - 1. * _y1 / parent.GetWh()) - parent.GetAbsYlowNDC()) / parent.GetAbsHNDC();
153 x2 = (1. * _x2 / parent.GetWw() - parent.GetAbsXlowNDC()) / parent.GetAbsWNDC();
154 y2 = ((1 - 1. * _y2 / parent.GetWh()) - parent.GetAbsYlowNDC()) / parent.GetAbsHNDC();
155 } else {
156 x1 = parent.AbsPixeltoX(_x1);
157 y1 = parent.AbsPixeltoY(_y1);
158 x2 = parent.AbsPixeltoX(_x2);
159 y2 = parent.AbsPixeltoY(_y2);
160 }
161 if (code == 0) {
162 auto pp = parent.GetPainter();
163 pp->SetAttLine(*this);
164 if (isndc)
165 pp->DrawLineNDC(x1, y1, x2, y2);
166 else
167 pp->DrawLine(x1, y1, x2, y2);
168 } else {
169 if (!isndc) {
170 x1 = parent.PadtoX(x1);
171 x2 = parent.PadtoX(x2);
172 y1 = parent.PadtoY(y1);
173 y2 = parent.PadtoY(y2);
174 }
175
176 if (code & 1) {
177 SetX1(x1);
178 SetY1(y1);
179 }
180 if (code & 2) {
181 SetX2(x2);
182 SetY2(y2);
183 }
184 if (TestBit(kVertical)) {
185 if (code & 1)
186 SetX2(GetX1());
187 else
188 SetX1(GetX2());
189 }
190 if (TestBit(kHorizontal)) {
191 if (code & 1)
192 SetY2(GetY1());
193 else
194 SetY1(GetY2());
195 }
196 }
197 };
198
199 switch (event) {
200
201 case kArrowKeyPress:
202 case kButton1Down:
203 oldX1 = GetX1();
204 oldY1 = GetY1();
205 oldX2 = GetX2();
206 oldY2 = GetY2();
207
208 // No break !!!
209
210 case kMouseMotion:
211
212 if (TestBit(kLineNDC)) {
213 px1 = parent.UtoAbsPixel(GetX1());
214 py1 = parent.VtoAbsPixel(GetY1());
215 px2 = parent.UtoAbsPixel(GetX2());
216 py2 = parent.VtoAbsPixel(GetY2());
217 } else {
218 px1 = parent.XtoAbsPixel(parent.XtoPad(GetX1()));
219 py1 = parent.YtoAbsPixel(parent.YtoPad(GetY1()));
220 px2 = parent.XtoAbsPixel(parent.XtoPad(GetX2()));
221 py2 = parent.YtoAbsPixel(parent.YtoPad(GetY2()));
222 }
223
224 //simply take sum of pixels differences
225 if (abs(px1 - px) + abs(py1 - py) < kMaxDiff) { //*-*================>OK take point number 1
226 selectPoint = 1;
227 parent.SetCursor(kPointer);
228 } else if (abs(px2 - px) + abs(py2 - py) < kMaxDiff) { //*-*================>OK take point number 2
229 selectPoint = 2;
230 parent.SetCursor(kPointer);
231 } else {
232 selectPoint = 3;
233 pxold = px;
234 pyold = py;
235 parent.SetCursor(kMove);
236 }
237
238 break;
239
240 case kArrowKeyRelease:
241 case kButton1Motion:
242 if (!opaque)
243 action(0, px1, py1, px2, py2);
244 if (selectPoint == 1) {
245 px1 = px;
246 py1 = py;
247 } else if (selectPoint == 2) {
248 px2 = px;
249 py2 = py;
250 } else if (selectPoint == 3) {
251 px1 += px - pxold;
252 py1 += py - pyold;
253 px2 += px - pxold;
254 py2 += py -pyold;
255 pxold = px;
256 pyold = py;
257 }
258 action(!opaque ? 0 : selectPoint, px1, py1, px2, py2);
259 if (opaque) {
260 if (selectPoint == 1) {
261 //check in which corner the BBox is edited
262 if (GetX1() > GetX2())
263 parent.ShowGuidelines(this, event, GetY1() > GetY2() ? '2' : '3', true);
264 else
265 parent.ShowGuidelines(this, event, GetY1() > GetY2() ? '1' : '4', true);
266 } else if (selectPoint == 2) {
267 //check in which corner the BBox is edited
268 if (GetX1() > GetX2())
269 parent.ShowGuidelines(this, event, GetY1() > GetY2() ? '4' : '1', true);
270 else
271 parent.ShowGuidelines(this, event, GetY1() > GetY2() ? '3' : '2', true);
272 } else if (selectPoint == 3) {
273 parent.ShowGuidelines(this, event, 'i', true);
274 }
275 parent.ModifiedUpdate();
276 }
277 break;
278
279 case kButton1Up:
280
281 if (gROOT->IsEscaped()) {
282 gROOT->SetEscape(kFALSE);
283 if (opaque) {
284 SetX1(oldX1);
285 SetY1(oldY1);
286 SetX2(oldX2);
287 SetY2(oldY2);
288 parent.ShowGuidelines(this, event);
289 parent.ModifiedUpdate();
290 }
291 break;
292 }
293 if (opaque) {
294 parent.ShowGuidelines(this, event);
295 } else {
296 action(selectPoint, px1, py1, px2, py2);
297 parent.ModifiedUpdate();
298 }
299 selectPoint = 0;
300 break;
301
302 case kButton1Locate:
303
304 // Sergey: code is never used, has to be removed in ROOT7
305 ExecuteEvent(kButton1Down, px, py);
306 while (true) {
307 px = py = 0;
308 event = parent.GetCanvasImp()->RequestLocator(px, py);
309
311
312 if (event != -1) { // button is released
313 ExecuteEvent(kButton1Up, px, py);
314 return;
315 }
316 }
317 }
318}
319
320////////////////////////////////////////////////////////////////////////////////
321/// Get the slope of this TLine
322
324{
325 Double_t m = 0;
326 if (fX2 == fX1) {
327 Error("GetSlope", "This line is vertical. The slope in undefined");
328 m = TMath::Infinity();
329 } else {
330 m = (fY2-fY1)/(fX2-fX1);
331 }
332 return m;
333}
334
335////////////////////////////////////////////////////////////////////////////////
336/// Get the Y-Intercept of this TLine
337
339{
340 Double_t b = 0;
341 if (fX2 == fX1) {
342 Error("GetYIntercept", "This line is vertical. The Y-Intercept in undefined");
343 b = TMath::Infinity();
344 } else {
345 b = (fY1*fX2-fY2*fX1)/(fX2-fX1);
346 }
347 return b;
348}
349
350////////////////////////////////////////////////////////////////////////////////
351/// List this line with its attributes.
352
353void TLine::ls(Option_t *) const
354{
356 printf("%s X1=%f Y1=%f X2=%f Y2=%f\n",IsA()->GetName(),fX1,fY1,fX2,fY2);
357}
358
359////////////////////////////////////////////////////////////////////////////////
360/// Paint this line with its current attributes.
361
363{
364 if (!gPad) return;
366 else PaintLine(gPad->XtoPad(fX1),gPad->YtoPad(fY1),gPad->XtoPad(fX2),gPad->YtoPad(fY2));
367}
368
369////////////////////////////////////////////////////////////////////////////////
370/// Draw this line with new coordinates.
371
373{
374 if (!gPad) return;
375 TAttLine::Modify(); //Change line attributes only if necessary
376 gPad->PaintLine(x1,y1,x2,y2);
377}
378
379////////////////////////////////////////////////////////////////////////////////
380/// Draw this line with new coordinates in NDC.
381
383{
384 if (!gPad) return;
385 TAttLine::Modify(); //Change line attributes only if necessary
386 gPad->PaintLineNDC(u1,v1,u2,v2);
387}
388
389////////////////////////////////////////////////////////////////////////////////
390/// Dump this line with its attributes.
391
393{
394 printf("%s X1=%f Y1=%f X2=%f Y2=%f",IsA()->GetName(),fX1,fY1,fX2,fY2);
395 if (GetLineColor() != 1) printf(" Color=%d",GetLineColor());
396 if (GetLineStyle() != 1) printf(" Style=%d",GetLineStyle());
397 if (GetLineWidth() != 1) printf(" Width=%d",GetLineWidth());
398 printf("\n");
399}
400
401////////////////////////////////////////////////////////////////////////////////
402/// Save primitive as a C++ statement(s) on output stream out
403
404void TLine::SavePrimitive(std::ostream &out, Option_t *option)
405{
406 SavePrimitiveConstructor(out, Class(), "line", TString::Format("%g, %g, %g, %g", fX1, fY1, fX2, fY2), kFALSE);
407
408 SaveLineAttributes(out, "line", 1, 1, 1);
409
410 if (TestBit(kLineNDC))
411 out << " line->SetNDC();\n";
412
413 if (TestBit(kVertical))
414 out << " line->SetBit(TLine::kVertical);\n";
415
416 if (TestBit(kHorizontal))
417 out << " line->SetBit(TLine::kHorizontal);\n";
418
419 SavePrimitiveDraw(out, "line", option);
420}
421
422////////////////////////////////////////////////////////////////////////////////
423/// Check whether this line is to be drawn horizontally.
424
429
430////////////////////////////////////////////////////////////////////////////////
431/// Check whether this line is to be drawn vertically.
432
434{
435 return TestBit(kVertical);
436}
437
438////////////////////////////////////////////////////////////////////////////////
439/// Set NDC mode on if isNDC = kTRUE, off otherwise
440
445
446////////////////////////////////////////////////////////////////////////////////
447/// Force the line to be drawn horizontally.
448/// Makes fY2 equal to fY1. The line length is kept.
449/// TArrow and TGaxis also get this function by inheritance.
450
451void TLine::SetHorizontal(Bool_t set /*= kTRUE*/)
452{
453 SetBit(kHorizontal, set);
454 if (set && gPad) {
456 Int_t px1 = gPad->XtoAbsPixel(fX1);
457 Int_t px2 = gPad->XtoAbsPixel(fX2);
458 Int_t py1 = gPad->YtoAbsPixel(fY1);
459 Int_t py2 = gPad->YtoAbsPixel(fY2);
460 Int_t l = Int_t(TMath::Sqrt((px2-px1)*(px2-px1)+(py2-py1)*(py2-py1)));
461 if (fX2 >= fX1) fX2 = gPad->AbsPixeltoX(px1+l);
462 else fX2 = gPad->AbsPixeltoX(px1-l);
463 fY2 = fY1;
464 }
465}
466
467////////////////////////////////////////////////////////////////////////////////
468/// Force the line to be drawn vertically.
469/// Makes fX2 equal to fX1. The line length is kept.
470/// TArrow and TGaxis also get this function by inheritance.
471
472void TLine::SetVertical(Bool_t set /*= kTRUE*/)
473{
474 SetBit(kVertical, set);
475 if (set && gPad) {
477 Int_t px1 = gPad->XtoAbsPixel(fX1);
478 Int_t px2 = gPad->XtoAbsPixel(fX2);
479 Int_t py1 = gPad->YtoAbsPixel(fY1);
480 Int_t py2 = gPad->YtoAbsPixel(fY2);
481 Int_t l = Int_t(TMath::Sqrt((px2-px1)*(px2-px1)+(py2-py1)*(py2-py1)));
482 if (fY2 >= fY1) fY2 = gPad->AbsPixeltoY(py1-l);
483 else fY2 = gPad->AbsPixeltoY(py1+l);
484 fX2 = fX1;
485 }
486}
487
488////////////////////////////////////////////////////////////////////////////////
489/// Stream an object of class TLine.
490
492{
493 if (R__b.IsReading()) {
495 Version_t R__v = R__b.ReadVersion(&R__s, &R__c);
496 if (R__v > 1) {
497 R__b.ReadClassBuffer(TLine::Class(), this, R__v, R__s, R__c);
498 return;
499 }
500 //====process old versions before automatic schema evolution
503 Float_t x1,y1,x2,y2;
504 R__b >> x1; fX1 = x1;
505 R__b >> y1; fY1 = y1;
506 R__b >> x2; fX2 = x2;
507 R__b >> y2; fY2 = y2;
508 //====end of old versions
509
510 } else {
511 R__b.WriteClassBuffer(TLine::Class(),this);
512 }
513}
514////////////////////////////////////////////////////////////////////////////////
515/// Return the bounding Box of the Line
516
518{
519 Rectangle_t BBox{0, 0, 0, 0};
520 if (gPad) {
521 Int_t px1 = gPad->XtoPixel(fX1);
522 Int_t px2 = gPad->XtoPixel(fX2);
523 Int_t py1 = gPad->YtoPixel(fY1);
524 Int_t py2 = gPad->YtoPixel(fY2);
525
526 if (px1 > px2)
527 std::swap(px1, px2);
528 if (py1 > py2)
529 std::swap(py1, py2);
530
531 BBox.fX = px1;
532 BBox.fY = py1;
533 BBox.fWidth = px2 - px1;
534 BBox.fHeight = py2 - py1;
535 }
536 return BBox;
537}
538
539////////////////////////////////////////////////////////////////////////////////
540/// Set X coordinate of the center of the BoundingBox
541
543{
544 Double_t w2 = 0.5 * (fX2 - fX1);
546 SetX1(midx - w2);
547 SetX2(midx + w2);
548}
549
550////////////////////////////////////////////////////////////////////////////////
551/// Set Y coordinate of the center of the BoundingBox
552
554{
555 Double_t h2 = 0.5 * (fY2 - fY1);
557 SetY1(midy - h2);
558 SetY2(midy + h2);
559}
560
561////////////////////////////////////////////////////////////////////////////////
562/// Set left hand side of BoundingBox to a value
563/// (resize in x direction on left)
564
566{
567 auto xx = GetXCoord(x, TestBit(kLineNDC));
568 if (fX2 > fX1)
569 SetX1(xx);
570 else
571 SetX2(xx);
572}
573
574////////////////////////////////////////////////////////////////////////////////
575/// Set right hand side of BoundingBox to a value
576/// (resize in x direction on right)
577
579{
580 auto xx = GetXCoord(x, TestBit(kLineNDC));
581 if (fX2 > fX1)
582 SetX2(xx);
583 else
584 SetX1(xx);
585}
586
587////////////////////////////////////////////////////////////////////////////////
588/// Set top of BoundingBox to a value (resize in y direction on top)
589
591{
592 auto yy = GetYCoord(y, TestBit(kLineNDC));
593 if (fY2 > fY1)
594 SetY2(yy);
595 else
596 SetY1(yy);
597}
598
599////////////////////////////////////////////////////////////////////////////////
600/// Set bottom of BoundingBox to a value
601/// (resize in y direction on bottom)
602
604{
605 auto yy = GetYCoord(y, TestBit(kLineNDC));
606 if (fY2 > fY1)
607 SetY1(yy);
608 else
609 SetY2(yy);
610}
@ kMouseMotion
Definition Buttons.h:23
@ kArrowKeyRelease
Definition Buttons.h:21
@ kButton1Motion
Definition Buttons.h:20
@ kButton1Up
Definition Buttons.h:19
@ kArrowKeyPress
Definition Buttons.h:21
@ kButton1Down
Definition Buttons.h:17
@ kButton1Locate
Definition Buttons.h:22
@ kMove
Definition GuiTypes.h:375
@ kPointer
Definition GuiTypes.h:376
#define b(i)
Definition RSha256.hxx:100
int Int_t
Signed integer 4 bytes (int)
Definition RtypesCore.h:59
short Version_t
Class version identifier (short)
Definition RtypesCore.h:79
float Float_t
Float 4 bytes (float)
Definition RtypesCore.h:71
constexpr Bool_t kFALSE
Definition RtypesCore.h:108
const char Option_t
Option string (const char)
Definition RtypesCore.h:80
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t option
Option_t Option_t TPoint TPoint const char x2
Option_t Option_t TPoint TPoint const char x1
Option_t Option_t TPoint TPoint const char y2
Option_t Option_t TPoint TPoint const char DrawLine
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t src
Option_t Option_t TPoint TPoint const char y1
#define gROOT
Definition TROOT.h:417
#define gPad
Abstract base class for elements drawn in the editor.
Definition TAttBBox2D.h:19
Double_t GetYCoord(const Int_t y, Bool_t is_ndc=kFALSE)
Double_t GetXCoord(const Int_t x, Bool_t is_ndc=kFALSE)
Line Attributes class.
Definition TAttLine.h:21
virtual void Streamer(TBuffer &)
virtual Color_t GetLineColor() const
Return the line color.
Definition TAttLine.h:36
virtual Width_t GetLineWidth() const
Return the line width.
Definition TAttLine.h:38
virtual Style_t GetLineStyle() const
Return the line style.
Definition TAttLine.h:37
virtual void Modify()
Change current line attributes if necessary.
Definition TAttLine.cxx:246
void Copy(TAttLine &attline) const
Copy this line attributes to a new TAttLine.
Definition TAttLine.cxx:176
Int_t DistancetoLine(Int_t px, Int_t py, Double_t xp1, Double_t yp1, Double_t xp2, Double_t yp2)
Compute distance from point px,py to a line.
Definition TAttLine.cxx:210
virtual void SaveLineAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1, Int_t widdef=1)
Save line attributes as C++ statement(s) on output stream out.
Definition TAttLine.cxx:289
Buffer base class used for serializing objects.
Definition TBuffer.h:43
Use the TLine constructor to create a simple line.
Definition TLine.h:22
void ls(Option_t *option="") const override
List this line with its attributes.
Definition TLine.cxx:353
virtual void SetY2(Double_t y2)
Definition TLine.h:70
static TClass * Class()
Double_t fY1
Y of 1st point.
Definition TLine.h:26
Double_t fX1
X of 1st point.
Definition TLine.h:25
Double_t GetYIntercept() const
Get the Y-Intercept of this TLine.
Definition TLine.cxx:338
virtual void SetX2(Double_t x2)
Definition TLine.h:68
@ kLineNDC
Use NDC coordinates.
Definition TLine.h:33
@ kHorizontal
Line is horizontal.
Definition TLine.h:35
@ kVertical
Line is vertical.
Definition TLine.h:34
Bool_t IsVertical()
Check whether this line is to be drawn vertically.
Definition TLine.cxx:433
virtual TLine * DrawLine(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Draw this line with new coordinates.
Definition TLine.cxx:103
void SetBBoxY1(const Int_t y) override
Set top of BoundingBox to a value (resize in y direction on top)
Definition TLine.cxx:590
void SetVertical(Bool_t set=kTRUE)
Force the line to be drawn vertically.
Definition TLine.cxx:472
virtual void PaintLine(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Draw this line with new coordinates.
Definition TLine.cxx:372
Double_t GetSlope() const
Get the slope of this TLine.
Definition TLine.cxx:323
TLine()
Definition TLine.h:38
void SetBBoxCenterY(const Int_t y) override
Set Y coordinate of the center of the BoundingBox.
Definition TLine.cxx:553
void SetBBoxX2(const Int_t x) override
Set right hand side of BoundingBox to a value (resize in x direction on right)
Definition TLine.cxx:578
virtual TLine * DrawLineNDC(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Draw this line with new coordinates in NDC.
Definition TLine.cxx:115
Bool_t IsHorizontal()
Check whether this line is to be drawn horizontally.
Definition TLine.cxx:425
Double_t GetY1() const
Definition TLine.h:52
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save primitive as a C++ statement(s) on output stream out.
Definition TLine.cxx:404
void Copy(TObject &line) const override
Copy this line to line.
Definition TLine.cxx:76
Double_t GetX2() const
Definition TLine.h:51
void Print(Option_t *option="") const override
Dump this line with its attributes.
Definition TLine.cxx:392
Double_t fX2
X of 2nd point.
Definition TLine.h:27
void SetBBoxX1(const Int_t x) override
Set left hand side of BoundingBox to a value (resize in x direction on left)
Definition TLine.cxx:565
void Paint(Option_t *option="") override
Paint this line with its current attributes.
Definition TLine.cxx:362
void SetBBoxY2(const Int_t y) override
Set bottom of BoundingBox to a value (resize in y direction on bottom)
Definition TLine.cxx:603
Int_t DistancetoPrimitive(Int_t px, Int_t py) override
Compute distance from point px,py to a line.
Definition TLine.cxx:89
virtual void SetX1(Double_t x1)
Definition TLine.h:67
TLine & operator=(const TLine &src)
Assignment operator.
Definition TLine.cxx:67
Double_t fY2
Y of 2nd point.
Definition TLine.h:28
virtual void PaintLineNDC(Double_t u1, Double_t v1, Double_t u2, Double_t v2)
Draw this line with new coordinates in NDC.
Definition TLine.cxx:382
void Streamer(TBuffer &) override
Stream an object of class TLine.
Definition TLine.cxx:491
void SetBBoxCenterX(const Int_t x) override
Set X coordinate of the center of the BoundingBox.
Definition TLine.cxx:542
TClass * IsA() const override
Definition TLine.h:79
virtual void SetY1(Double_t y1)
Definition TLine.h:69
virtual void SetNDC(Bool_t isNDC=kTRUE)
Set NDC mode on if isNDC = kTRUE, off otherwise.
Definition TLine.cxx:441
void ExecuteEvent(Int_t event, Int_t px, Int_t py) override
Execute action corresponding to one event.
Definition TLine.cxx:132
Double_t GetX1() const
Definition TLine.h:50
Rectangle_t GetBBox() override
Return the bounding Box of the Line.
Definition TLine.cxx:517
void SetHorizontal(Bool_t set=kTRUE)
Force the line to be drawn horizontally.
Definition TLine.cxx:451
Double_t GetY2() const
Definition TLine.h:53
Mother of all ROOT objects.
Definition TObject.h:42
virtual const char * GetName() const
Returns name of object.
Definition TObject.cxx:459
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition TObject.h:204
virtual void Streamer(TBuffer &)
Stream an object of class TObject.
Definition TObject.cxx:994
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Definition TObject.cxx:885
virtual void Copy(TObject &object) const
Copy this to obj.
Definition TObject.cxx:156
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Definition TObject.cxx:1095
static void SavePrimitiveDraw(std::ostream &out, const char *variable_name, Option_t *option=nullptr)
Save invocation of primitive Draw() method Skipped if option contains "nodraw" string.
Definition TObject.cxx:842
static void SavePrimitiveConstructor(std::ostream &out, TClass *cl, const char *variable_name, const char *constructor_agrs="", Bool_t empty_line=kTRUE)
Save object constructor in the output stream "out".
Definition TObject.cxx:774
@ kCanDelete
if object in a list can be deleted
Definition TObject.h:71
static void IndentLevel()
Functions used by ls() to indent an object hierarchy.
Definition TROOT.cxx:3052
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
Definition TString.cxx:2384
TLine * line
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
Double_t Sqrt(Double_t x)
Returns the square root of x.
Definition TMath.h:673
Double_t Infinity()
Returns an infinity as defined by the IEEE standard.
Definition TMath.h:928
Rectangle structure (maps to the X11 XRectangle structure)
Definition GuiTypes.h:362
TMarker m
Definition textangle.C:8
TLine l
Definition textangle.C:4