11 TControlBar *bar =
new TControlBar(
"vertical",
"GL painter demo",20,20);
12 bar->AddButton(
"Help on demos",
"help()",
"Description");
13 bar->AddButton(
"glsurfaces",
".x $ROOTSYS/tutorials/gl/glsurfaces.C",
"Surface painter example");
14 bar->AddButton(
"glrose",
".x $ROOTSYS/tutorials/gl/glrose.C",
"Surface in polar system");
15 bar->AddButton(
"gltf3",
".x $ROOTSYS/tutorials/gl/gltf3.C",
"TF3 painter");
16 bar->AddButton(
"glbox",
".x $ROOTSYS/tutorials/gl/glbox.C",
"BOX painter");
17 bar->AddButton(
"glparametric",
".x $ROOTSYS/tutorials/gl/glparametric.C",
"Parametric surface");
23 new TCanvas(
"chelp",
"Help on gldemos",200,10,700,600);
25 TPaveLabel *title =
new TPaveLabel(0.04, 0.86, 0.96, 0.98,
"These demos show different gl painters.");
26 title->SetFillColor(32);
29 TPaveText *hdemo =
new TPaveText(0.04, 0.04, 0.96, 0.8);
30 hdemo->SetTextAlign(12);
31 hdemo->SetTextFont(52);
32 hdemo->SetTextColor(kBlue);
33 hdemo->AddText(
"1. Glsurfaces demo shows glsurf4, glsurf1, glsurf3, glsurf1cyl, glsurfpol, gltf3 options.");
34 hdemo->AddText(
"2. Glrose demontrates \"glsurf2pol\" drawing option and user-defined palette.");
35 hdemo->AddText(
"3. Gltf3 demo shows \"gltf3\" option.");
36 hdemo->AddText(
"4. Glbox demo shows \"glbox\" and \"glbox1\" options for TH3.");
37 hdemo->AddText(
"5. Glparametric demo shows how to define and display parametric surfaces.");
38 hdemo->AddText(
"You can zoom any plot: press 'J', 'K', 'j', 'k' keys, or use mouse wheel.");
39 hdemo->AddText(
"Rotate any plot:");
40 hdemo->AddText(
" ---select plot with mouse cursor,");
41 hdemo->AddText(
" ---move mouse cursor, pressing and holding left mouse button ");
42 hdemo->AddText(
"Pan plot:");
43 hdemo->AddText(
" ---select with mouse cursor a part of a plot, other than back box planes ,");
44 hdemo->AddText(
" ---move mouse cursor, pressing and holding middle mouse button ");
45 hdemo->AddText(
"Selected part of a plot is higlighted (TF3 higlighting is not implemented yet.)");
46 hdemo->AddText(
"You can select one of back box planes, press middle mouse button and move cursor-");
47 hdemo->AddText(
"this will create \"slice\" (TF does not support yet).");
48 hdemo->AddText(
"After the slice was created, you can project it on a back box");
49 hdemo->AddText(
" ---press key 'p' (now implemented only for surf options ).");
50 hdemo->AddText(
"Left double click removes all slices/projections.");