41 void ReplaceUVNames(
TString &equation)
49 for (
Ssiz_t i = 0; i < len;) {
50 const char c = equation[i];
56 if (c ==
'u' || c ==
'v') {
59 if (i == len || (!isalpha(equation[i]) && !isdigit(equation[i]) && equation[i] !=
'_')) {
61 equation[i - 1] = c ==
'u' ?
'x' : (++vFound,
'y');
65 while (i < len && (isalpha(equation[i]) || isdigit(equation[i]) || equation[i] ==
'_'))
69 while (i < len && (isalpha(equation[i]) || isdigit(equation[i]) || equation[i] ==
'_'))
134 if (!xFun.Length() || !yFun.Length() || !zFun.Length()) {
135 Error(
"TGLParametricEquation",
"One of string expressions is empty");
140 TString equation(xFun);
142 ReplaceUVNames(equation);
143 fXEquation.reset(
new TF2(name +
"xEquation", equation.Data(), uMin, uMax, vMin, vMax));
152 ReplaceUVNames(equation);
153 fYEquation.reset(
new TF2(name +
"yEquation", equation.Data(), uMin, uMax, vMin, vMax));
162 ReplaceUVNames(equation);
163 fZEquation.reset(
new TF2(name +
"zEquation", equation.Data(), uMin, uMax, vMin, vMax));
182 Error(
"TGLParametricEquation",
"Function ptr is null");
257 return fPainter->DistancetoPrimitive(px, py);
267 return fPainter->ExecuteEvent(event, px, py);
275 static char mess[] = {
"parametric surface" };
333 fMesh.SetRowLen(fMeshSize);
338 const Double_t dU = (uRange.second - uRange.first) / (fMeshSize - 1);
339 const Double_t dV = (vRange.second - vRange.first) / (fMeshSize - 1);
346 using namespace TMath;
352 min.
X() =
Min(min.
X(), newVert.
X());
353 max.X() =
Max(max.X(), newVert.
X());
354 min.
Y() =
Min(min.
Y(), newVert.
Y());
355 max.Y() =
Max(max.Y(), newVert.
Y());
356 min.
Z() =
Min(min.
Z(), newVert.
Z());
357 max.Z() =
Max(max.Z(), newVert.
Z());
359 fMesh[i][j].fPos = newVert;
366 TH3F hist(
"tmp",
"tmp", 2, -1., 1., 2, -1., 1., 2, -1., 1.);
457 static char mess[] = {
"parametric surface" };
477 gROOT->ProcessLineFast(
Form(
"((TGLPlotPainter *)0x%lx)->Paint()", (
ULong_t)
this));
483 Info(
"ProcessEvent",
"Switch to true color to use box cut");
506 glEnable(GL_DEPTH_TEST);
507 glEnable(GL_LIGHTING);
509 glDisable(GL_CULL_FACE);
510 glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, GL_TRUE);
518 glDisable(GL_DEPTH_TEST);
519 glDisable(GL_LIGHTING);
520 glDisable(GL_LIGHT0);
521 glDisable(GL_CULL_FACE);
522 glLightModeli(GL_LIGHT_MODEL_TWO_SIDE, GL_FALSE);
536 glEnable(GL_POLYGON_OFFSET_FILL);
537 glPolygonOffset(1.f, 1.f);
543 glBegin(GL_TRIANGLES);
546 for (
Int_t j = 0; j < fMeshSize - 1; ++j) {
561 glNormal3dv(
fMesh[i + 1][j + 1].fNormal.CArr());
563 glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE,
fMesh[i + 1][j + 1].fRGBA);
564 glVertex3dv(
fMesh[i + 1][j + 1].fPos.CArr());
566 glNormal3dv(
fMesh[i][j + 1].fNormal.CArr());
568 glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE,
fMesh[i][j + 1].fRGBA);
569 glVertex3dv(
fMesh[i][j + 1].fPos.CArr());
571 glNormal3dv(
fMesh[i][j].fNormal.CArr());
573 glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE,
fMesh[i][j].fRGBA);
574 glVertex3dv(
fMesh[i][j].fPos.CArr());
576 glNormal3dv(
fMesh[i + 1][j].fNormal.CArr());
578 glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE,
fMesh[i + 1][j].fRGBA);
579 glVertex3dv(
fMesh[i + 1][j].fPos.CArr());
581 glNormal3dv(
fMesh[i + 1][j + 1].fNormal.CArr());
583 glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE,
fMesh[i + 1][j + 1].fRGBA);
584 glVertex3dv(
fMesh[i + 1][j + 1].fPos.CArr());
586 glNormal3dv(
fMesh[i][j].fNormal.CArr());
588 glMaterialfv(GL_FRONT_AND_BACK, GL_DIFFUSE,
fMesh[i][j].fRGBA);
589 glVertex3dv(
fMesh[i][j].fPos.CArr());
596 glDisable(GL_POLYGON_OFFSET_FILL);
601 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
602 glColor4d(0., 0., 0., 0.5);
603 glPolygonMode(GL_FRONT_AND_BACK, GL_LINE);
605 for (
Int_t i = 0; i < fMeshSize - 1; ++i) {
606 for (
Int_t j = 0; j < fMeshSize - 1; ++j) {
621 glVertex3dv(
fMesh[i][j].fPos.CArr());
622 glVertex3dv(
fMesh[i][j + 1].fPos.CArr());
623 glVertex3dv(
fMesh[i + 1][j + 1].fPos.CArr());
624 glVertex3dv(
fMesh[i + 1][j].fPos.CArr());
629 glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
684 const Float_t specular[] = {1.f, 1.f, 1.f, 1.f};
685 glMaterialfv(GL_FRONT_AND_BACK, GL_SPECULAR, specular);
686 glMaterialf(GL_FRONT_AND_BACK, GL_SHININESS, 20.f);
689 const Float_t outerDiff[] = {0.5f, 0.42f, 0.f, 1.f};
690 glMaterialfv(GL_FRONT, GL_DIFFUSE, outerDiff);
691 const Float_t innerDiff[] = {0.5f, 0.2f, 0.f, 1.f};
692 glMaterialfv(GL_BACK, GL_DIFFUSE, innerDiff);
ParametricEquation_t fEquation
void DrawBox(Bool_t selectionPass, Int_t selected) const
Draw cut as a semi-transparent box.
void RestoreModelviewMatrix() const
Camera for TGLPlotPainter and sub-classes.
void MoveBox(Int_t px, Int_t py, Int_t axisID)
Move box cut along selected direction.
void Pan(Int_t px, Int_t py)
User's moving mouse cursor, with middle mouse button pressed (for pad).
TGLPlotCoordinates fCartesianCoord
virtual void SetDirectory(TDirectory *dir)
By default when an histogram is created, it is added to the list of histogram objects in the current ...
3-D histogram with a float per channel (see TH1 documentation)}
std::pair< Double_t, Double_t > Range_t
void DrawSectionXOY() const
No such sections.
Bool_t IsConstrained() const
Check is constrained.
void StartPan(Int_t px, Int_t py)
User clicks somewhere (px, py).
const TGLVertex3 * Get3DBox() const
Get 3D box.
Rgl::Range_t GetURange() const
[uMin, uMax]
void SetConstrained(Bool_t c)
Set constrained.
Short_t Min(Short_t a, Short_t b)
void TurnOnOff()
Turn the box cut on/off.
void EvalVertex(TGLVertex3 &newVertex, Double_t u, Double_t v) const
Calculate vertex.
Int_t DistancetoPrimitive(Int_t px, Int_t py)
Check, if parametric surface is under cursor.
virtual void Copy(TObject &axis) const
Copy axis structure to another axis.
T * Normal2Plane(const T v1[3], const T v2[3], const T v3[3], T normal[3])
void DrawSectionYOZ() const
No such sections.
void Apply(Double_t phi, Double_t theta) const
Applies rotations and translations before drawing.
3 component (x/y/z) vertex class.
The TNamed class is the base class for all named ROOT classes.
TGL2DArray< Vertex_t > fMesh
void Info(const char *location, const char *msgfmt,...)
void SetCamera() const
Viewport and projection.
TGLParametricEquation(const TString &name, const TString &xEquation, const TString &yEquation, const TString &zEquation, Double_t uMin, Double_t uMax, Double_t vMin, Double_t vMax)
Surface is defined by three strings.
Rgl::Range_t GetVRange() const
[vMin, vMax]
void SetViewVolume(const TGLVertex3 *box)
'box' is the TGLPlotPainter's back box's coordinates.
R__ALWAYS_INLINE Bool_t IsZombie() const
void ObjectIDToColor(Int_t objectID, Bool_t highColor)
Object id encoded as rgb triplet.
Bool_t IsModified() const
Something was changed in parametric equation (or constrained option was changed). ...
const Rgl::Range_t & GetZRangeScaled() const
Scaled range.
void SetSurfaceColor() const
Set material properties.
TGLParametricEquation * fEquation
void RestoreProjectionMatrix() const
void DrawSectionXOZ() const
No such sections.
void(* ParametricEquation_t)(TGLVertex3 &, Double_t u, Double_t v)
void Pan(Int_t px, Int_t py)
Pan camera.
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
char * Form(const char *fmt,...)
A parametric surface is a surface defined by a parametric equation, involving two parameters (u...
A 2-Dim function with parameters.
Base class for plot-painters that provide GL rendering of various 2D and 3D histograms, functions and parametric surfaces.
void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Pass event to painter.
Bool_t InitGeometry()
Build mesh.
Double_t GetYScale() const
void InitGL() const
Initialize gl state.
TGLParametricPlot(TGLParametricEquation *equation, TGLPlotCamera *camera)
Constructor.
void SaveProjectionMatrix() const
Bool_t SetRanges(const TH1 *hist, Bool_t errors=kFALSE, Bool_t zBins=kFALSE)
Set bin ranges, ranges.
void AddOption(const TString &option)
No additional options for parametric surfaces.
const Rgl::Range_t & GetYRangeScaled() const
Scaled range.
The histogram painter class using OpenGL.
void GetColor(Float_t v, Float_t vmin, Float_t vmax, Int_t type, Float_t *rgba)
This function creates color for parametric surface's vertex, using its 'u' value. ...
void StartPan(Int_t px, Int_t py)
User clicks right mouse button (in a pad).
const Double_t * CArr() const
void Paint(Option_t *option)
Delegate paint.
void SetModified(Bool_t m)
Set modified.
void StartMovement(Int_t px, Int_t py)
Start cut's movement.
Short_t Max(Short_t a, Short_t b)
void DrawPlot() const
Draw parametric surface.
void SetPlotBox(const Rgl::Range_t &xRange, const Rgl::Range_t &yRange, const Rgl::Range_t &zRange)
Set up a frame box.
const Rgl::Range_t & GetXRangeScaled() const
Scaled range.
void ProcessEvent(Int_t event, Int_t px, Int_t py)
Change color/mesh size or switch on/off mesh/box cut.
virtual void Set(Int_t nbins, Double_t xmin, Double_t xmax)
Initialize axis with fix bins.
Int_t GetHeight() const
viewport[3]
void SaveModelviewMatrix() const
void InitColors()
Calculate colors for vertices, using one of 20 color themes.
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
TGLPlotCoordinates * fCoord
virtual void Paint()
Draw lego/surf/whatever you can.
char * GetObjectInfo(Int_t px, Int_t py) const
No object info yet.
Double_t GetZScale() const
void DeInitGL() const
Initialize gl state.
TAxis * GetXaxis()
Get the behaviour adopted by the object about the statoverflows. See EStatOverflows for more informat...
Double_t GetXScale() const
char * GetPlotInfo(Int_t px, Int_t py)
No object info yet.
Bool_t IsInCut(Double_t xMin, Double_t xMax, Double_t yMin, Double_t yMax, Double_t zMin, Double_t zMax) const
Check, if box defined by xmin/xmax etc. is in cut.