Logo ROOT   6.14/05
Reference Guide
glsurfaces.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_gl
3 /// Various surfaces rendered with GL.
4 /// This example draws 6 surfaces using OpenGL in pad (one is remake
5 /// of a classic surfaces.C, another contains 4 surfaces).
6 ///
7 /// The commands used are exactly the same as with a normal pad.
8 /// The only command to add is: `gStyle->SetCanvasPreferGL(true);`
9 ///
10 /// \macro_image(nobatch)
11 /// \macro_code
12 ///
13 /// \authors Rene Brun, Timur Pocheptsov
14 
15 void glsurfaces()
16 {
17  gStyle->SetPalette(0);
18 
19  // after this command all legos surfaces (surf/surf1/surf2/surf4/tf3
20  // options) are automatically rendered with OpenGL.
22 
23  TCanvas *c1 = new TCanvas("glc1","Surfaces Drawing Options",200,10,700,900);
24  c1->SetFillColor(42);
26  auto title = new TPaveText(0.2, 0.96, 0.8, 0.995);
27  title->SetFillColor(33);
28  title->AddText("Examples of Surface options");
29  title->Draw();
30 
31  TPad *pad1 = new TPad("pad1","Gouraud shading", 0.03, 0.50, 0.98, 0.95, 21);
32  TPad *pad2 = new TPad("pad2","Color mesh", 0.03, 0.02, 0.98, 0.48, 21);
33  pad1->Draw();
34  pad2->Draw();
35  // We generate a 2-D function
36  TF2 *f2 = new TF2("f2","x**2 + y**2 - x**3 -8*x*y**4", -1., 1.2, -1.5, 1.5);
37  // Draw this function in pad1 with Gouraud shading option
38  pad1->cd();
39  pad1->SetLogz();
40  f2->SetFillColor(45);
41  f2->Draw("glsurf4");
42 
43  TF2 *f2clone = new TF2("f2clone","x**2 + y**2 - x**3 -8*x*y**4",
44  -1., 1.2, -1.5, 1.5);
45  // Draw this function in pad2 with color mesh option
46  pad2->cd();
47  pad2->SetLogz();
48  f2clone->Draw("glsurf1");
49 
50  //add axis titles. The titles are set on the intermediate
51  //histogram used for visualisation. We must force this histogram
52  //to be created, then force the redrawing of the two pads
53  pad2->Update();
54  f2->GetHistogram()->GetXaxis()->SetTitle("x title");
55  f2->GetHistogram()->GetYaxis()->SetTitle("y title");
56  f2->GetHistogram()->GetXaxis()->SetTitleOffset(1.4);
57  f2->GetHistogram()->GetYaxis()->SetTitleOffset(1.4);
58  f2clone->GetHistogram()->GetXaxis()->SetTitle("x title");
59  f2clone->GetHistogram()->GetYaxis()->SetTitle("y title");
60  f2clone->GetHistogram()->GetXaxis()->SetTitleOffset(1.4);
61  f2clone->GetHistogram()->GetYaxis()->SetTitleOffset(1.4);
62  pad1->Modified();
63  pad2->Modified();
64 
65  TCanvas *c2 = new TCanvas("glc2","Surfaces Drawing Options with gl",
66  700,10,700,700);
67  c2->SetFillColor(42);
69 
70  c2->Divide(2, 2);
71 
72  c2->cd(1);
73  TF2 *fun1 = new TF2("fun1","1000*((sin(x)/x)*(sin(y)/y))+200",
74  -6., 6., -6., 6.);
75  fun1->SetNpx(30);
76  fun1->SetNpy(30);
77  fun1->SetFillColor(kGreen);
78  fun1->Draw("glsurf3");
79 
80  c2->cd(2);
81  TF2 *fun2 = new TF2("fun2","cos(y)*sin(x)+cos(x)*sin(y)",
82  -6., 6., -6., 6.);
83  fun2->Draw("glsurf1cyl");
84 
85  c2->cd(3);
86  TF2 *fun3 = new TF2("fun3","sin(x) / x * cos(y) * y", -6., 6., -6., 6.);
87  fun3->Draw("glsurfpol");
88 
89  c2->cd(4);
90  TF3 *fun4 = new TF3("fun4","sin(x * x + y * y + z * z - 4)",
91  -2.5, 2.5, -2.5, 2.5, -2.5, 2.5);
92  Int_t colInd = TColor::GetColor(1.f, 0.5f, 0.f);
93  fun4->SetFillColor(colInd);
94  fun4->Draw("gl");//tf3 option
95 }
virtual void SetTitleOffset(Float_t offset=1)
Set distance between the axis and the axis title Offset is a correction factor with respect to the "s...
Definition: TAttAxis.cxx:294
virtual void Draw(Option_t *option="")
Draw this function with its current attributes.
Definition: TF2.cxx:241
virtual void SetNpx(Int_t npx=100)
Set the number of points used to draw the function.
Definition: TF1.cxx:3339
virtual void Draw(Option_t *option="")
Draw this function with its current attributes.
Definition: TF3.cxx:176
return c1
Definition: legend1.C:41
R__EXTERN TStyle * gStyle
Definition: TStyle.h:406
TVirtualPad * cd(Int_t subpadnumber=0)
Set current canvas & pad.
Definition: TCanvas.cxx:688
#define f(i)
Definition: RSha256.hxx:104
virtual void Update()
Update pad.
Definition: TPad.cxx:2815
int Int_t
Definition: RtypesCore.h:41
Definition: Rtypes.h:59
TVirtualPad * cd(Int_t subpadnumber=0)
Set Current pad.
Definition: TPad.cxx:594
void SetFrameFillColor(Color_t color=1)
Definition: TStyle.h:349
Double_t fun3(Double_t *x, Double_t *par)
Definition: Functions.C:21
virtual void Draw(Option_t *option="")
Draw Pad in Current pad (re-parent pad if necessary).
Definition: TPad.cxx:1281
void SetCanvasPreferGL(Bool_t prefer=kTRUE)
Definition: TStyle.h:319
virtual void SetFillColor(Color_t fcolor)
Set the fill area color.
Definition: TAttFill.h:37
Double_t fun4(Double_t x)
Definition: Functions.C:26
A 3-Dim function with parameters.
Definition: TF3.h:28
The most important graphics class in the ROOT system.
Definition: TPad.h:29
virtual void SetNpy(Int_t npy=100)
Set the number of points used to draw the function.
Definition: TF2.cxx:932
static Int_t GetColor(const char *hexcolor)
Static method returning color number for color specified by hex color string of form: "#rrggbb"...
Definition: TColor.cxx:1758
TAxis * GetYaxis()
Definition: TH1.h:316
A 2-Dim function with parameters.
Definition: TF2.h:29
The Canvas class.
Definition: TCanvas.h:31
return c2
Definition: legend2.C:14
A Pave (see TPave) with text, lines or/and boxes inside.
Definition: TPaveText.h:21
virtual void Divide(Int_t nx=1, Int_t ny=1, Float_t xmargin=0.01, Float_t ymargin=0.01, Int_t color=0)
Automatic pad generation by division.
Definition: TPad.cxx:1162
virtual TH1 * GetHistogram() const
Return a pointer to the histogram used to visualise the function.
Definition: TF1.cxx:1471
virtual void SetLogz(Int_t value=1)
Set Lin/Log scale for Z.
Definition: TPad.cxx:5827
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
Definition: TNamed.cxx:164
const Bool_t kTRUE
Definition: RtypesCore.h:87
void SetPalette(Int_t ncolors=kBird, Int_t *colors=0, Float_t alpha=1.)
See TColor::SetPalette.
Definition: TStyle.cxx:1637
void Modified(Bool_t flag=1)
Definition: TPad.h:414
TAxis * GetXaxis()
Get the behaviour adopted by the object about the statoverflows. See EStatOverflows for more informat...
Definition: TH1.h:315