Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
crown.C
Go to the documentation of this file.
1/// \file
2/// \ingroup tutorial_graphics
3/// \notebook
4/// Draw crowns.
5///
6/// \macro_image
7/// \macro_code
8///
9/// \author Olivier Couet
10
11void crown(){
12 auto c1 = new TCanvas("c1","c1",400,400);
13 auto cr1 = new TCrown(.5,.5,.3,.4);
14 cr1->SetLineStyle(2);
15 cr1->SetLineWidth(4);
16 cr1->Draw();
17 auto cr2 = new TCrown(.5,.5,.2,.3,45,315);
18 cr2->SetFillColor(38);
19 cr2->SetFillStyle(3010);
20 cr2->Draw();
21 auto cr3 = new TCrown(.5,.5,.2,.3,-45,45);
22 cr3->SetFillColor(50);
23 cr3->SetFillStyle(3025);
24 cr3->Draw();
25 auto cr4 = new TCrown(.5,.5,.0,.2);
26 cr4->SetFillColor(4);
27 cr4->SetFillStyle(3008);
28 cr4->Draw();
29}
The Canvas class.
Definition TCanvas.h:23
To draw a Crown.
Definition TCrown.h:19
return c1
Definition legend1.C:41