Logo ROOT   6.16/01
Reference Guide
TPolyLine.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 "Riostream.h"
13#include "TROOT.h"
14#include "TMath.h"
15#include "TVirtualPad.h"
16#include "TPolyLine.h"
17#include "TClass.h"
18
20
21/** \class TPolyLine
22\ingroup BasicGraphics
23
24Defined by an array on N points in a 2-D space.
25
26One can draw the contour of the polyline or/and its fill area.
27Example:
28Begin_Macro(source)
29{
30 Double_t x[5] = {.2,.7,.6,.25,.2};
31 Double_t y[5] = {.5,.1,.9,.7,.5};
32 TPolyLine *pline = new TPolyLine(5,x,y);
33 pline->SetFillColor(38);
34 pline->SetLineColor(2);
35 pline->SetLineWidth(4);
36 pline->Draw("f");
37 pline->Draw();
38}
39End_Macro
40*/
41
42////////////////////////////////////////////////////////////////////////////////
43/// PolyLine default constructor.
44
46{
47 fN = 0;
48 fX = 0;
49 fY = 0;
50 fLastPoint = -1;
51}
52
53////////////////////////////////////////////////////////////////////////////////
54/// PolyLine normal constructor without initialisation.
55/// Allocates n points. The option string is ignored.
56
59{
60 fOption = option;
61 fLastPoint = -1;
62 if (n <= 0) {
63 fN = 0;
64 fLastPoint = -1;
65 fX = fY = 0;
66 return;
67 }
68 fN = n;
69 fX = new Double_t[fN];
70 fY = new Double_t[fN];
71}
72
73////////////////////////////////////////////////////////////////////////////////
74/// PolyLine normal constructor (single precision).
75/// Makes n points with (x, y) coordinates from x and y.
76/// The option string is ignored.
77
80{
81 fOption = option;
82 fLastPoint = -1;
83 if (n <= 0) {
84 fN = 0;
85 fLastPoint = -1;
86 fX = fY = 0;
87 return;
88 }
89 fN = n;
90 fX = new Double_t[fN];
91 fY = new Double_t[fN];
92 if (!x || !y) return;
93 for (Int_t i=0; i<fN;i++) { fX[i] = x[i]; fY[i] = y[i];}
94 fLastPoint = fN-1;
95}
96
97////////////////////////////////////////////////////////////////////////////////
98/// PolyLine normal constructor (double precision).
99/// Makes n points with (x, y) coordinates from x and y.
100/// The option string is ignored.
101
103 :TObject(), TAttLine(), TAttFill()
104{
105 fOption = option;
106 fLastPoint = -1;
107 if (n <= 0) {
108 fN = 0;
109 fLastPoint = -1;
110 fX = fY = 0;
111 return;
112 }
113 fN = n;
114 fX = new Double_t[fN];
115 fY = new Double_t[fN];
116 if (!x || !y) return;
117 for (Int_t i=0; i<fN;i++) { fX[i] = x[i]; fY[i] = y[i];}
118 fLastPoint = fN-1;
119}
120
121////////////////////////////////////////////////////////////////////////////////
122///assignment operator
123
125{
126 if(this!=&pl) {
130 fN=pl.fN;
132 fX=pl.fX;
133 fY=pl.fY;
134 fOption=pl.fOption;
135 }
136 return *this;
137}
138
139////////////////////////////////////////////////////////////////////////////////
140/// PolyLine default destructor.
141
143{
144 if (fX) delete [] fX;
145 if (fY) delete [] fY;
146}
147
148////////////////////////////////////////////////////////////////////////////////
149/// PolyLine copy constructor.
150
151TPolyLine::TPolyLine(const TPolyLine &polyline) : TObject(polyline), TAttLine(polyline), TAttFill(polyline)
152{
153 fN = 0;
154 fX = 0;
155 fY = 0;
156 fLastPoint = -1;
157 ((TPolyLine&)polyline).Copy(*this);
158}
159
160////////////////////////////////////////////////////////////////////////////////
161/// Copy this polyline to polyline.
162
163void TPolyLine::Copy(TObject &obj) const
164{
165 TObject::Copy(obj);
166 TAttLine::Copy(((TPolyLine&)obj));
167 TAttFill::Copy(((TPolyLine&)obj));
168 ((TPolyLine&)obj).fN = fN;
169 if (fN > 0) {
170 ((TPolyLine&)obj).fX = new Double_t[fN];
171 ((TPolyLine&)obj).fY = new Double_t[fN];
172 for (Int_t i=0; i<fN;i++) {((TPolyLine&)obj).fX[i] = fX[i]; ((TPolyLine&)obj).fY[i] = fY[i];}
173 } else {
174 ((TPolyLine&)obj).fX = 0;
175 ((TPolyLine&)obj).fY = 0;
176 }
177 ((TPolyLine&)obj).fOption = fOption;
178 ((TPolyLine&)obj).fLastPoint = fLastPoint;
179}
180
181////////////////////////////////////////////////////////////////////////////////
182/// Returns closest distance in pixels from point (px, py) to a polyline.
183///
184/// First looks for distances to the points of the polyline. Stops search
185/// and returns if a vertex of the polyline is found to be closer than 10
186/// pixels. Thus the return value may depend on the ordering of points
187/// in the polyline.
188///
189/// Then looks for distances to the lines of the polyline. There is no
190/// arbitrary cutoff; any distance may be found.
191///
192/// Finally checks whether (px, py) is inside a closed and filled polyline.
193/// (Must be EXACTLY closed. "Filled" means fill color and fill style are
194/// both non-zero.) If so, returns zero.
195///
196/// Returns 9999 if the polyline has no points.
197
199{
200 const Int_t big = 9999;
201 const Int_t kMaxDiff = 10;
202
203 // check if point is near one of the points
204 Int_t i, pxp, pyp, d;
205 Int_t distance = big;
206 if (Size() <= 0) return distance;
207
208 for (i=0;i<Size();i++) {
209 pxp = gPad->XtoAbsPixel(gPad->XtoPad(fX[i]));
210 pyp = gPad->YtoAbsPixel(gPad->YtoPad(fY[i]));
211 d = TMath::Abs(pxp-px) + TMath::Abs(pyp-py);
212 if (d < distance) distance = d;
213 }
214 if (distance < kMaxDiff) return distance;
215
216 // check if point is near one of the connecting lines
217 for (i=0;i<Size()-1;i++) {
218 d = DistancetoLine(px, py, gPad->XtoPad(fX[i]), gPad->YtoPad(fY[i]), gPad->XtoPad(fX[i+1]), gPad->YtoPad(fY[i+1]));
219 if (d < distance) distance = d;
220 }
221
222 // in case of a closed and filled polyline, check if we are inside
223 if (fFillColor && fFillStyle && fX[0] == fX[fLastPoint] && fY[0] == fY[fLastPoint]) {
224 if (TMath::IsInside(gPad->AbsPixeltoX(px),gPad->AbsPixeltoY(py),fLastPoint+1,fX,fY)) distance = 0;
225 }
226 return distance;
227}
228
229////////////////////////////////////////////////////////////////////////////////
230/// Draw this polyline with its current attributes.
231
233{
234 AppendPad(option);
235}
236
237////////////////////////////////////////////////////////////////////////////////
238/// Draw this polyline with new coordinates.
239
241{
242 TPolyLine *newpolyline = new TPolyLine(n,x,y);
243 TAttLine::Copy(*newpolyline);
244 TAttFill::Copy(*newpolyline);
245 newpolyline->fOption = fOption;
246 newpolyline->SetBit(kCanDelete);
247 newpolyline->AppendPad(option);
248}
249
250////////////////////////////////////////////////////////////////////////////////
251/// Execute action corresponding to one event.
252///
253/// This member function is called when a polyline is clicked with the locator
254///
255/// If Left button clicked on one of the line end points, this point
256/// follows the cursor until button is released.
257///
258/// if Middle button clicked, the line is moved parallel to itself
259/// until the button is released.
260
262{
263 if (!gPad) return;
264
265 Int_t i, d;
266 Double_t xmin, xmax, ymin, ymax, dx, dy, dxr, dyr;
267 const Int_t kMaxDiff = 10;
268 static Bool_t middle;
269 static Int_t ipoint, pxp, pyp;
270 static Int_t px1,px2,py1,py2;
271 static Int_t pxold, pyold, px1old, py1old, px2old, py2old;
272 static Int_t dpx, dpy;
273 static Int_t *x=0, *y=0;
274 Bool_t opaque = gPad->OpaqueMoving();
275
276 if (!gPad->IsEditable()) return;
277
278 Int_t np = Size();
279
280 switch (event) {
281
282 case kButton1Down:
283 gVirtualX->SetLineColor(-1);
284 TAttLine::Modify(); //Change line attributes only if necessary
285 px1 = gPad->XtoAbsPixel(gPad->GetX1());
286 py1 = gPad->YtoAbsPixel(gPad->GetY1());
287 px2 = gPad->XtoAbsPixel(gPad->GetX2());
288 py2 = gPad->YtoAbsPixel(gPad->GetY2());
289 ipoint = -1;
290
291
292 if (x || y) break;
293 x = new Int_t[np+1];
294 y = new Int_t[np+1];
295 for (i=0;i<np;i++) {
296 pxp = gPad->XtoAbsPixel(gPad->XtoPad(fX[i]));
297 pyp = gPad->YtoAbsPixel(gPad->YtoPad(fY[i]));
298 if (!opaque) {
299 gVirtualX->DrawLine(pxp-4, pyp-4, pxp+4, pyp-4);
300 gVirtualX->DrawLine(pxp+4, pyp-4, pxp+4, pyp+4);
301 gVirtualX->DrawLine(pxp+4, pyp+4, pxp-4, pyp+4);
302 gVirtualX->DrawLine(pxp-4, pyp+4, pxp-4, pyp-4);
303 }
304 x[i] = pxp;
305 y[i] = pyp;
306 d = TMath::Abs(pxp-px) + TMath::Abs(pyp-py);
307 if (d < kMaxDiff) ipoint =i;
308 }
309 dpx = 0;
310 dpy = 0;
311 pxold = px;
312 pyold = py;
313 if (ipoint < 0) return;
314 if (ipoint == 0) {
315 px1old = 0;
316 py1old = 0;
317 px2old = gPad->XtoAbsPixel(fX[1]);
318 py2old = gPad->YtoAbsPixel(fY[1]);
319 } else if (ipoint == fN-1) {
320 px1old = gPad->XtoAbsPixel(gPad->XtoPad(fX[fN-2]));
321 py1old = gPad->YtoAbsPixel(gPad->YtoPad(fY[fN-2]));
322 px2old = 0;
323 py2old = 0;
324 } else {
325 px1old = gPad->XtoAbsPixel(gPad->XtoPad(fX[ipoint-1]));
326 py1old = gPad->YtoAbsPixel(gPad->YtoPad(fY[ipoint-1]));
327 px2old = gPad->XtoAbsPixel(gPad->XtoPad(fX[ipoint+1]));
328 py2old = gPad->YtoAbsPixel(gPad->YtoPad(fY[ipoint+1]));
329 }
330 pxold = gPad->XtoAbsPixel(gPad->XtoPad(fX[ipoint]));
331 pyold = gPad->YtoAbsPixel(gPad->YtoPad(fY[ipoint]));
332
333 break;
334
335
336 case kMouseMotion:
337
338 middle = kTRUE;
339 for (i=0;i<np;i++) {
340 pxp = gPad->XtoAbsPixel(gPad->XtoPad(fX[i]));
341 pyp = gPad->YtoAbsPixel(gPad->YtoPad(fY[i]));
342 d = TMath::Abs(pxp-px) + TMath::Abs(pyp-py);
343 if (d < kMaxDiff) middle = kFALSE;
344 }
345
346
347 // check if point is close to an axis
348 if (middle) gPad->SetCursor(kMove);
349 else gPad->SetCursor(kHand);
350 break;
351
352 case kButton1Motion:
353 if (!opaque) {
354 if (middle) {
355 for(i=0;i<np-1;i++) {
356 gVirtualX->DrawLine(x[i]+dpx, y[i]+dpy, x[i+1]+dpx, y[i+1]+dpy);
357 pxp = x[i]+dpx;
358 pyp = y[i]+dpy;
359 gVirtualX->DrawLine(pxp-4, pyp-4, pxp+4, pyp-4);
360 gVirtualX->DrawLine(pxp+4, pyp-4, pxp+4, pyp+4);
361 gVirtualX->DrawLine(pxp+4, pyp+4, pxp-4, pyp+4);
362 gVirtualX->DrawLine(pxp-4, pyp+4, pxp-4, pyp-4);
363 }
364 pxp = x[np-1]+dpx;
365 pyp = y[np-1]+dpy;
366 gVirtualX->DrawLine(pxp-4, pyp-4, pxp+4, pyp-4);
367 gVirtualX->DrawLine(pxp+4, pyp-4, pxp+4, pyp+4);
368 gVirtualX->DrawLine(pxp+4, pyp+4, pxp-4, pyp+4);
369 gVirtualX->DrawLine(pxp-4, pyp+4, pxp-4, pyp-4);
370 dpx += px - pxold;
371 dpy += py - pyold;
372 pxold = px;
373 pyold = py;
374 for(i=0;i<np-1;i++) {
375 gVirtualX->DrawLine(x[i]+dpx, y[i]+dpy, x[i+1]+dpx, y[i+1]+dpy);
376 pxp = x[i]+dpx;
377 pyp = y[i]+dpy;
378 gVirtualX->DrawLine(pxp-4, pyp-4, pxp+4, pyp-4);
379 gVirtualX->DrawLine(pxp+4, pyp-4, pxp+4, pyp+4);
380 gVirtualX->DrawLine(pxp+4, pyp+4, pxp-4, pyp+4);
381 gVirtualX->DrawLine(pxp-4, pyp+4, pxp-4, pyp-4);
382 }
383 pxp = x[np-1]+dpx;
384 pyp = y[np-1]+dpy;
385 gVirtualX->DrawLine(pxp-4, pyp-4, pxp+4, pyp-4);
386 gVirtualX->DrawLine(pxp+4, pyp-4, pxp+4, pyp+4);
387 gVirtualX->DrawLine(pxp+4, pyp+4, pxp-4, pyp+4);
388 gVirtualX->DrawLine(pxp-4, pyp+4, pxp-4, pyp-4);
389 } else {
390 if (px1old) gVirtualX->DrawLine(px1old, py1old, pxold, pyold);
391 if (px2old) gVirtualX->DrawLine(pxold, pyold, px2old, py2old);
392 gVirtualX->DrawLine(pxold-4, pyold-4, pxold+4, pyold-4);
393 gVirtualX->DrawLine(pxold+4, pyold-4, pxold+4, pyold+4);
394 gVirtualX->DrawLine(pxold+4, pyold+4, pxold-4, pyold+4);
395 gVirtualX->DrawLine(pxold-4, pyold+4, pxold-4, pyold-4);
396 pxold = px;
397 pxold = TMath::Max(pxold, px1);
398 pxold = TMath::Min(pxold, px2);
399 pyold = py;
400 pyold = TMath::Max(pyold, py2);
401 pyold = TMath::Min(pyold, py1);
402 if (px1old) gVirtualX->DrawLine(px1old, py1old, pxold, pyold);
403 if (px2old) gVirtualX->DrawLine(pxold, pyold, px2old, py2old);
404 gVirtualX->DrawLine(pxold-4, pyold-4, pxold+4, pyold-4);
405 gVirtualX->DrawLine(pxold+4, pyold-4, pxold+4, pyold+4);
406 gVirtualX->DrawLine(pxold+4, pyold+4, pxold-4, pyold+4);
407 gVirtualX->DrawLine(pxold-4, pyold+4, pxold-4, pyold-4);
408 }
409 } else {
410 if (middle) {
411 for(i=0;i<np-1;i++) {
412 pxp = x[i]+dpx;
413 pyp = y[i]+dpy;
414 }
415 pxp = x[np-1]+dpx;
416 pyp = y[np-1]+dpy;
417 dpx += px - pxold;
418 dpy += py - pyold;
419 pxold = px;
420 pyold = py;
421 } else {
422 pxold = px;
423 pxold = TMath::Max(pxold, px1);
424 pxold = TMath::Min(pxold, px2);
425 pyold = py;
426 pyold = TMath::Max(pyold, py2);
427 pyold = TMath::Min(pyold, py1);
428 }
429 if (x && y) {
430 if (middle) {
431 for(i=0;i<np;i++) {
432 fX[i] = gPad->PadtoX(gPad->AbsPixeltoX(x[i]+dpx));
433 fY[i] = gPad->PadtoY(gPad->AbsPixeltoY(y[i]+dpy));
434 }
435 } else {
436 fX[ipoint] = gPad->PadtoX(gPad->AbsPixeltoX(pxold));
437 fY[ipoint] = gPad->PadtoY(gPad->AbsPixeltoY(pyold));
438 }
439 }
440 gPad->Modified(kTRUE);
441 }
442 break;
443
444 case kButton1Up:
445
446 // Compute x,y range
447 xmin = gPad->GetUxmin();
448 xmax = gPad->GetUxmax();
449 ymin = gPad->GetUymin();
450 ymax = gPad->GetUymax();
451 dx = xmax-xmin;
452 dy = ymax-ymin;
453 dxr = dx/(1 - gPad->GetLeftMargin() - gPad->GetRightMargin());
454 dyr = dy/(1 - gPad->GetBottomMargin() - gPad->GetTopMargin());
455
456 // Range() could change the size of the pad pixmap and therefore should
457 // be called before the other paint routines
458 gPad->Range(xmin - dxr*gPad->GetLeftMargin(),
459 ymin - dyr*gPad->GetBottomMargin(),
460 xmax + dxr*gPad->GetRightMargin(),
461 ymax + dyr*gPad->GetTopMargin());
462 gPad->RangeAxis(xmin, ymin, xmax, ymax);
463
464 if (x && y) {
465 if (middle) {
466 for(i=0;i<np;i++) {
467 fX[i] = gPad->PadtoX(gPad->AbsPixeltoX(x[i]+dpx));
468 fY[i] = gPad->PadtoY(gPad->AbsPixeltoY(y[i]+dpy));
469 }
470 } else {
471 fX[ipoint] = gPad->PadtoX(gPad->AbsPixeltoX(pxold));
472 fY[ipoint] = gPad->PadtoY(gPad->AbsPixeltoY(pyold));
473 }
474 delete [] x; x = 0;
475 delete [] y; y = 0;
476 }
477 gPad->Modified(kTRUE);
478 gVirtualX->SetLineColor(-1);
479 }
480}
481
482////////////////////////////////////////////////////////////////////////////////
483/// List this polyline with its attributes.
484/// The option string is ignored.
485
487{
489 printf("TPolyLine N=%d\n",fN);
490}
491
492////////////////////////////////////////////////////////////////////////////////
493/// Merge polylines in the collection in this polyline
494
496{
497 if (!li) return 0;
498 TIter next(li);
499
500 //first loop to count the number of entries
501 TPolyLine *pl;
502 Int_t npoints = 0;
503 while ((pl = (TPolyLine*)next())) {
504 if (!pl->InheritsFrom(TPolyLine::Class())) {
505 Error("Add","Attempt to add object of class: %s to a %s",pl->ClassName(),this->ClassName());
506 return -1;
507 }
508 npoints += pl->Size();
509 }
510
511 //extend this polyline to hold npoints
512 if (npoints > 1) SetPoint(npoints-1,0,0);
513
514 //merge all polylines
515 next.Reset();
516 while ((pl = (TPolyLine*)next())) {
517 Int_t np = pl->Size();
518 Double_t *x = pl->GetX();
519 Double_t *y = pl->GetY();
520 for (Int_t i=0;i<np;i++) {
521 SetPoint(i,x[i],y[i]);
522 }
523 }
524
525 return npoints;
526}
527
528////////////////////////////////////////////////////////////////////////////////
529/// Paint this polyline with its current attributes.
530
532{
533 if (TestBit(kPolyLineNDC)) {
534 if (strlen(option) > 0) PaintPolyLineNDC(fLastPoint+1, fX, fY, option);
536 } else {
537 if (strlen(option) > 0) PaintPolyLine(fLastPoint+1, fX, fY, option);
539 }
540}
541
542////////////////////////////////////////////////////////////////////////////////
543/// Draw this polyline with new coordinates.
544///
545/// If option = 'f' or 'F' the fill area is drawn.
546/// The default is to draw the lines only.
547
549{
550 if (n <= 0) return;
551 TAttLine::Modify(); //Change line attributes only if necessary
552 TAttFill::Modify(); //Change fill area attributes only if necessary
553 Double_t *xx = x;
554 Double_t *yy = y;
555 if (gPad->GetLogx()) {
556 xx = new Double_t[n];
557 for (Int_t ix=0;ix<n;ix++) xx[ix] = gPad->XtoPad(x[ix]);
558 }
559 if (gPad->GetLogy()) {
560 yy = new Double_t[n];
561 for (Int_t iy=0;iy<n;iy++) yy[iy] = gPad->YtoPad(y[iy]);
562 }
563 if (*option == 'f' || *option == 'F') gPad->PaintFillArea(n,xx,yy,option);
564 else gPad->PaintPolyLine(n,xx,yy,option);
565 if (x != xx) delete [] xx;
566 if (y != yy) delete [] yy;
567}
568
569////////////////////////////////////////////////////////////////////////////////
570/// Draw this polyline with new coordinates in NDC.
571
573{
574 TAttLine::Modify(); //Change line attributes only if necessary
575 TAttFill::Modify(); //Change fill area attributes only if necessary
576 if (*option == 'f' || *option == 'F') gPad->PaintFillAreaNDC(n,x,y,option);
577 else gPad->PaintPolyLineNDC(n,x,y,option);
578}
579
580////////////////////////////////////////////////////////////////////////////////
581/// Dump this polyline with its attributes.
582/// The option string is ignored.
583
585{
586 printf("PolyLine N=%d\n",fN);
587}
588
589////////////////////////////////////////////////////////////////////////////////
590/// Save primitive as a C++ statement(s) on output stream out
591
592void TPolyLine::SavePrimitive(std::ostream &out, Option_t *option /*= ""*/)
593{
594 char quote = '"';
595 out<<" "<<std::endl;
596 if (gROOT->ClassSaved(TPolyLine::Class())) {
597 out<<" ";
598 } else {
599 out<<" Double_t *dum = 0;"<<std::endl;
600 out<<" TPolyLine *";
601 }
602 out<<"pline = new TPolyLine("<<fN<<",dum,dum,"<<quote<<fOption<<quote<<");"<<std::endl;
603
604 SaveFillAttributes(out,"pline",0,1001);
605 SaveLineAttributes(out,"pline",1,1,1);
606
607 for (Int_t i=0;i<Size();i++) {
608 out<<" pline->SetPoint("<<i<<","<<fX[i]<<","<<fY[i]<<");"<<std::endl;
609 }
610 out<<" pline->Draw("
611 <<quote<<option<<quote<<");"<<std::endl;
612}
613
614////////////////////////////////////////////////////////////////////////////////
615/// Set NDC mode on if isNDC = kTRUE, off otherwise
616
618{
620 if (isNDC) SetBit(kPolyLineNDC);
621}
622
623////////////////////////////////////////////////////////////////////////////////
624/// Set point following LastPoint to x, y.
625/// Returns index of the point (new last point).
626
628{
629 fLastPoint++;
631 return fLastPoint;
632}
633
634////////////////////////////////////////////////////////////////////////////////
635/// Set point number n to (x, y)
636/// If n is greater than the current size, the arrays are automatically
637/// extended.
638
640{
641 if (n < 0) return;
642 if (!fX || !fY || n >= fN) {
643 // re-allocate the object
644 Int_t newN = TMath::Max(2*fN,n+1);
645 Double_t *savex = new Double_t [newN];
646 Double_t *savey = new Double_t [newN];
647 if (fX && fN){
648 memcpy(savex,fX,fN*sizeof(Double_t));
649 memset(&savex[fN],0,(newN-fN)*sizeof(Double_t));
650 delete [] fX;
651 }
652 if (fY && fN){
653 memcpy(savey,fY,fN*sizeof(Double_t));
654 memset(&savey[fN],0,(newN-fN)*sizeof(Double_t));
655 delete [] fY;
656 }
657 fX = savex;
658 fY = savey;
659 fN = newN;
660 }
661 fX[n] = x;
662 fY[n] = y;
664}
665
666////////////////////////////////////////////////////////////////////////////////
667/// Resize this polyline to size n.
668/// If n <= 0 the current arrays of points are deleted.
669/// If n is greater than the current size, the new points are set to (0, 0)
670
672{
673 if (n <= 0) {
674 fN = 0;
675 fLastPoint = -1;
676 delete [] fX;
677 delete [] fY;
678 fX = fY = 0;
679 return;
680 }
681 if (n < fN) {
682 fN = n;
683 fLastPoint = n - 1;
684 } else {
685 SetPoint(n-1,0,0);
686 }
687}
688
689////////////////////////////////////////////////////////////////////////////////
690/// Set new values for this polyline (single precision).
691///
692/// If n <= 0 the current arrays of points are deleted.
693
695{
696 if (n <= 0) {
697 fN = 0;
698 fLastPoint = -1;
699 delete [] fX;
700 delete [] fY;
701 fX = fY = 0;
702 return;
703 }
704 fN =n;
705 if (fX) delete [] fX;
706 if (fY) delete [] fY;
707 fX = new Double_t[fN];
708 fY = new Double_t[fN];
709 for (Int_t i=0; i<fN;i++) {
710 if (x) fX[i] = (Double_t)x[i];
711 if (y) fY[i] = (Double_t)y[i];
712 }
713 fOption = option;
714 fLastPoint = fN-1;
715}
716
717////////////////////////////////////////////////////////////////////////////////
718/// Set new values for this polyline (double precision).
719///
720/// If n <= 0 the current arrays of points are deleted.
721
723{
724 if (n <= 0) {
725 fN = 0;
726 fLastPoint = -1;
727 delete [] fX;
728 delete [] fY;
729 fX = fY = 0;
730 return;
731 }
732 fN =n;
733 if (fX) delete [] fX;
734 if (fY) delete [] fY;
735 fX = new Double_t[fN];
736 fY = new Double_t[fN];
737 for (Int_t i=0; i<fN;i++) {
738 if (x) fX[i] = x[i];
739 if (y) fY[i] = y[i];
740 }
741 fOption = option;
742 fLastPoint = fN-1;
743}
744
745////////////////////////////////////////////////////////////////////////////////
746/// Stream a class object.
747
748void TPolyLine::Streamer(TBuffer &b)
749{
750 if (b.IsReading()) {
751 UInt_t R__s, R__c;
752 Version_t R__v = b.ReadVersion(&R__s, &R__c);
753 if (R__v > 1) {
754 b.ReadClassBuffer(TPolyLine::Class(), this, R__v, R__s, R__c);
755 return;
756 }
757 //====process old versions before automatic schema evolution
758 TObject::Streamer(b);
759 TAttLine::Streamer(b);
760 TAttFill::Streamer(b);
761 b >> fN;
762 fX = new Double_t[fN];
763 fY = new Double_t[fN];
764 Float_t *x = new Float_t[fN];
765 Float_t *y = new Float_t[fN];
766 b.ReadFastArray(x,fN);
767 b.ReadFastArray(y,fN);
768 for (Int_t i=0;i<fN;i++) {
769 fX[i] = x[i];
770 fY[i] = y[i];
771 }
772 fOption.Streamer(b);
773 b.CheckByteCount(R__s, R__c, TPolyLine::IsA());
774 //====end of old versions
775
776 } else {
777 b.WriteClassBuffer(TPolyLine::Class(),this);
778 }
779}
@ kMouseMotion
Definition: Buttons.h:23
@ kButton1Motion
Definition: Buttons.h:20
@ kButton1Up
Definition: Buttons.h:19
@ kButton1Down
Definition: Buttons.h:17
void Class()
Definition: Class.C:29
#define d(i)
Definition: RSha256.hxx:102
#define b(i)
Definition: RSha256.hxx:100
int Int_t
Definition: RtypesCore.h:41
short Version_t
Definition: RtypesCore.h:61
unsigned int UInt_t
Definition: RtypesCore.h:42
const Bool_t kFALSE
Definition: RtypesCore.h:88
bool Bool_t
Definition: RtypesCore.h:59
double Double_t
Definition: RtypesCore.h:55
float Float_t
Definition: RtypesCore.h:53
const Bool_t kTRUE
Definition: RtypesCore.h:87
const char Option_t
Definition: RtypesCore.h:62
#define ClassImp(name)
Definition: Rtypes.h:363
float xmin
Definition: THbookFile.cxx:93
float ymin
Definition: THbookFile.cxx:93
float xmax
Definition: THbookFile.cxx:93
float ymax
Definition: THbookFile.cxx:93
Binding & operator=(OUT(*fun)(void))
#define gROOT
Definition: TROOT.h:410
#define gPad
Definition: TVirtualPad.h:286
#define gVirtualX
Definition: TVirtualX.h:345
@ kMove
Definition: TVirtualX.h:46
@ kHand
Definition: TVirtualX.h:46
Fill Area Attributes class.
Definition: TAttFill.h:19
void Copy(TAttFill &attfill) const
Copy this fill attributes to a new TAttFill.
Definition: TAttFill.cxx:201
virtual void Modify()
Change current fill area attributes if necessary.
Definition: TAttFill.cxx:210
Style_t fFillStyle
Fill area style.
Definition: TAttFill.h:23
Color_t fFillColor
Fill area color.
Definition: TAttFill.h:22
virtual void SaveFillAttributes(std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1001)
Save fill attributes as C++ statement(s) on output stream out.
Definition: TAttFill.cxx:233
Line Attributes class.
Definition: TAttLine.h:18
virtual void Modify()
Change current line attributes if necessary.
Definition: TAttLine.cxx:234
void Copy(TAttLine &attline) const
Copy this line attributes to a new TAttLine.
Definition: TAttLine.cxx:164
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:198
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:262
Buffer base class used for serializing objects.
Definition: TBuffer.h:40
Collection abstract base class.
Definition: TCollection.h:63
void Reset()
Definition: TCollection.h:252
Mother of all ROOT objects.
Definition: TObject.h:37
TObject & operator=(const TObject &rhs)
TObject assignment operator.
Definition: TObject.h:271
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition: TObject.h:172
virtual const char * ClassName() const
Returns name of class to which the object belongs.
Definition: TObject.cxx:128
virtual void AppendPad(Option_t *option="")
Append graphics object to current pad.
Definition: TObject.cxx:105
void SetBit(UInt_t f, Bool_t set)
Set or unset the user status bits as specified in f.
Definition: TObject.cxx:694
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
Definition: TObject.cxx:443
virtual void Copy(TObject &object) const
Copy this to obj.
Definition: TObject.cxx:61
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
Definition: TObject.cxx:880
void ResetBit(UInt_t f)
Definition: TObject.h:171
@ kCanDelete
if object in a list can be deleted
Definition: TObject.h:58
Defined by an array on N points in a 2-D space.
Definition: TPolyLine.h:23
TString fOption
options
Definition: TPolyLine.h:30
virtual Int_t Size() const
Definition: TPolyLine.h:71
virtual void Print(Option_t *option="") const
Dump this polyline with its attributes.
Definition: TPolyLine.cxx:584
Int_t fLastPoint
The index of the last filled point.
Definition: TPolyLine.h:27
virtual Int_t Merge(TCollection *list)
Merge polylines in the collection in this polyline.
Definition: TPolyLine.cxx:495
virtual void PaintPolyLineNDC(Int_t n, Double_t *x, Double_t *y, Option_t *option="")
Draw this polyline with new coordinates in NDC.
Definition: TPolyLine.cxx:572
virtual void DrawPolyLine(Int_t n, Double_t *x, Double_t *y, Option_t *option="")
Draw this polyline with new coordinates.
Definition: TPolyLine.cxx:240
Double_t * GetX() const
Definition: TPolyLine.h:54
virtual void SetPoint(Int_t point, Double_t x, Double_t y)
Set point number n to (x, y) If n is greater than the current size, the arrays are automatically exte...
Definition: TPolyLine.cxx:639
virtual ~TPolyLine()
PolyLine default destructor.
Definition: TPolyLine.cxx:142
TPolyLine()
PolyLine default constructor.
Definition: TPolyLine.cxx:45
virtual Int_t DistancetoPrimitive(Int_t px, Int_t py)
Returns closest distance in pixels from point (px, py) to a polyline.
Definition: TPolyLine.cxx:198
Double_t * GetY() const
Definition: TPolyLine.h:55
virtual void PaintPolyLine(Int_t n, Double_t *x, Double_t *y, Option_t *option="")
Draw this polyline with new coordinates.
Definition: TPolyLine.cxx:548
Double_t * fX
[fN] Array of X coordinates
Definition: TPolyLine.h:28
@ kPolyLineNDC
Polyline coordinates are in NDC space.
Definition: TPolyLine.h:37
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Execute action corresponding to one event.
Definition: TPolyLine.cxx:261
TPolyLine & operator=(const TPolyLine &)
assignment operator
Definition: TPolyLine.cxx:124
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition: TPolyLine.cxx:592
Int_t fN
Number of points.
Definition: TPolyLine.h:26
virtual void Draw(Option_t *option="")
Draw this polyline with its current attributes.
Definition: TPolyLine.cxx:232
virtual void Copy(TObject &polyline) const
Copy this polyline to polyline.
Definition: TPolyLine.cxx:163
virtual void Paint(Option_t *option="")
Paint this polyline with its current attributes.
Definition: TPolyLine.cxx:531
Double_t * fY
[fN] Array of Y coordinates
Definition: TPolyLine.h:29
virtual void SetPolyLine(Int_t n)
Resize this polyline to size n.
Definition: TPolyLine.cxx:671
virtual void SetNDC(Bool_t isNDC=kTRUE)
Set NDC mode on if isNDC = kTRUE, off otherwise.
Definition: TPolyLine.cxx:617
virtual void ls(Option_t *option="") const
List this polyline with its attributes.
Definition: TPolyLine.cxx:486
virtual Int_t SetNextPoint(Double_t x, Double_t y)
Set point following LastPoint to x, y.
Definition: TPolyLine.cxx:627
static void IndentLevel()
Functions used by ls() to indent an object hierarchy.
Definition: TROOT.cxx:2851
const char * Data() const
Definition: TString.h:364
Double_t y[n]
Definition: legend1.C:17
Double_t x[n]
Definition: legend1.C:17
const Int_t n
Definition: legend1.C:16
Short_t Max(Short_t a, Short_t b)
Definition: TMathBase.h:212
Bool_t IsInside(T xp, T yp, Int_t np, T *x, T *y)
Function which returns kTRUE if point xp,yp lies inside the polygon defined by the np points in array...
Definition: TMath.h:1197
Short_t Min(Short_t a, Short_t b)
Definition: TMathBase.h:180
Short_t Abs(Short_t d)
Definition: TMathBase.h:120