From $ROOTSYS/tutorials/eve/glplot_geom.C

// Demonstrates how to combine Timur's GL plots with other scene elements.
// Author: Matevz Tadel, Sept 2009

void glplot_geom()
{
   TEveManager::Create();

   TEveUtil::Macro("show_extract.C");

   TH3F *h31 = new TH3F("h31", "h31", 20, -3, 3, 20, -3, 3, 20, -3, 3);
   h31->FillRandom("gaus", 20*20*20);
   h31->SetFillColor(2);
   x = new TEvePlot3D("EvePlot - TH3F");
   x->SetPlot(h31, "glbox");
   x->RefMainTrans().Scale(800, 800, 1000);
   x->RefMainTrans().RotateLF(1, 3, TMath::PiOver2());
   gEve->AddElement(x);

   gEve->Redraw3D(kTRUE);
}
 glplot_geom.C:1
 glplot_geom.C:2
 glplot_geom.C:3
 glplot_geom.C:4
 glplot_geom.C:5
 glplot_geom.C:6
 glplot_geom.C:7
 glplot_geom.C:8
 glplot_geom.C:9
 glplot_geom.C:10
 glplot_geom.C:11
 glplot_geom.C:12
 glplot_geom.C:13
 glplot_geom.C:14
 glplot_geom.C:15
 glplot_geom.C:16
 glplot_geom.C:17
 glplot_geom.C:18
 glplot_geom.C:19
 glplot_geom.C:20
 glplot_geom.C:21