Preliminary demo for showing Timur's GL plots in EVE.
void glplot()
{
TF2 *f2 =
new TF2(
"f2",
"x**2 + y**2 - x**3 -8*x*y**4", -1., 1.2, -1.5, 1.5);
x->SetPlot(f2,"glsurf4");
x->RefMainTrans().MoveLF(2, 1);
TH3F *h31 =
new TH3F(
"h31",
"h31", 10, -1, 1, 10, -1, 1, 10, -1, 1);
x->SetPlot(h31, "glbox");
x->RefMainTrans().MoveLF(2, -1);
}
- Author
- Matevz Tadel
Definition in file glplot.C.