Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TGLPadPainter Class Reference

"Delegating" part of TGLPadPainter.

Line/fill/etc. attributes can be set inside TPad, but not only there: many of them are set by base sub-objects of 2d primitives (2d primitives usually inherit TAttLine or TAttFill etc.). And these sub-objects call gVirtualX->SetLineWidth ... etc. So, if I save some attributes in my painter, it will be mess - at any moment I do not know, where to take line attribute - from gVirtualX or from my own member. So! All attributed, ALL go to/from gVirtualX.

Definition at line 28 of file TGLPadPainter.h.

Public Member Functions

 TGLPadPainter ()
 
void ClearDrawable ()
 Not required at the moment.
 
void CopyDrawable (Int_t device, Int_t px, Int_t py)
 Not required at the moment.
 
Int_t CreateDrawable (UInt_t w, UInt_t h)
 Not required at the moment.
 
void DestroyDrawable (Int_t device)
 Not required at the moment.
 
void DrawBox (Double_t x1, Double_t y1, Double_t x2, Double_t y2, EBoxMode mode)
 Draw filled or hollow box.
 
void DrawFillArea (Int_t n, const Double_t *x, const Double_t *y)
 Draw tesselated polygon (probably, outline only).
 
void DrawFillArea (Int_t n, const Float_t *x, const Float_t *y)
 Draw tesselated polygon (never called, probably, since TPad::PaintFillArea for floats is deprecated).
 
void DrawLine (Double_t x1, Double_t y1, Double_t x2, Double_t y2)
 Draw line segment.
 
void DrawLineNDC (Double_t u1, Double_t v1, Double_t u2, Double_t v2)
 Draw line segment in NDC coordinates.
 
void DrawPixels (const unsigned char *pixelData, UInt_t width, UInt_t height, Int_t dstX, Int_t dstY, Bool_t enableBlending)
 
void DrawPolyLine (Int_t n, const Double_t *x, const Double_t *y)
 Draw poly-line in user coordinates.
 
void DrawPolyLine (Int_t n, const Float_t *x, const Float_t *y)
 Never called?
 
void DrawPolyLineNDC (Int_t n, const Double_t *u, const Double_t *v)
 Poly line in NDC.
 
void DrawPolyMarker (Int_t n, const Double_t *x, const Double_t *y)
 Poly-marker.
 
void DrawPolyMarker (Int_t n, const Float_t *x, const Float_t *y)
 Poly-marker.
 
void DrawText (Double_t x, Double_t y, const char *text, ETextMode mode)
 Draw text.
 
void DrawText (Double_t, Double_t, const wchar_t *, ETextMode)
 Draw text.
 
template<class Char >
void DrawTextHelper (Double_t x, Double_t y, const Char *text, ETextMode)
 
void DrawTextNDC (Double_t x, Double_t y, const char *text, ETextMode mode)
 Draw text in NDC.
 
void DrawTextNDC (Double_t, Double_t, const wchar_t *, ETextMode)
 Draw text in NDC.
 
Color_t GetFillColor () const
 Delegate to gVirtualX.
 
Style_t GetFillStyle () const
 Delegate to gVirtualX.
 
Color_t GetLineColor () const
 Delegate to gVirtualX.
 
Style_t GetLineStyle () const
 Delegate to gVirtualX.
 
Width_t GetLineWidth () const
 Delegate to gVirtualX.
 
Short_t GetTextAlign () const
 Delegate to gVirtualX.
 
Float_t GetTextAngle () const
 Delegate to gVirtualX.
 
Color_t GetTextColor () const
 Delegate to gVirtualX.
 
Font_t GetTextFont () const
 Delegate to gVirtualX.
 
Float_t GetTextMagnitude () const
 Delegate to gVirtualX.
 
Float_t GetTextSize () const
 Delegate to gVirtualX.
 
void InitPainter ()
 Init gl-pad painter:
 
void InvalidateCS ()
 When TPad::Range for gPad is called, projection must be changed in OpenGL.
 
Bool_t IsTransparent () const
 Delegate to gVirtualX.
 
void LockPainter ()
 Locked state of painter means, that GL context can be invalid, so no GL calls can be executed.
 
void SaveImage (TVirtualPad *pad, const char *fileName, Int_t type) const
 Using TImage save frame-buffer contents as a picture.
 
void SelectDrawable (Int_t device)
 For gVirtualX this means select pixmap (or window) and all subsequent drawings will go into this pixmap.
 
void SetFillColor (Color_t fcolor)
 Delegate to gVirtualX.
 
void SetFillStyle (Style_t fstyle)
 Delegate to gVirtualX.
 
void SetLineColor (Color_t lcolor)
 Delegate to gVirtualX.
 
void SetLineStyle (Style_t lstyle)
 Delegate to gVirtualX.
 
void SetLineWidth (Width_t lwidth)
 Delegate to gVirtualX.
 
void SetOpacity (Int_t percent)
 Delegate to gVirtualX.
 
void SetTextAlign (Short_t align)
 Delegate to gVirtualX.
 
void SetTextAngle (Float_t tangle)
 Delegate to gVirtualX.
 
void SetTextColor (Color_t tcolor)
 Delegate to gVirtualX.
 
void SetTextFont (Font_t tfont)
 Delegate to gVirtualX.
 
void SetTextSize (Float_t tsize)
 Delegate to gVirtualX.
 
void SetTextSizePixels (Int_t npixels)
 Delegate to gVirtualX.
 
- Public Member Functions inherited from TVirtualPadPainter
virtual ~TVirtualPadPainter ()
 Virtual dtor.
 

Private Member Functions

 TGLPadPainter (const TGLPadPainter &rhs)
 
void DrawGradient (const TLinearGradient *gradient, Int_t n, const Double_t *x, const Double_t *y)
 
void DrawGradient (const TRadialGradient *gradient, Int_t n, const Double_t *x, const Double_t *y)
 
void DrawPolygonWithGradient (Int_t n, const Double_t *x, const Double_t *y)
 At the moment I assume both linear and radial gradients will work the same way - using a stencil buffer and some big rectangle(s) to fill with a gradient.
 
void DrawPolyMarker ()
 Poly-marker.
 
void DrawTesselation (Int_t n, const Double_t *x, const Double_t *y)
 
template<class Char_t >
void DrawTextHelper (Double_t x, Double_t y, const Char_t *text, ETextMode mode)
 
TGLPadPainteroperator= (const TGLPadPainter &rhs)
 
void RestoreModelviewMatrix () const
 Restore the modelview matrix.
 
void RestoreProjectionMatrix () const
 Restore the projection matrix.
 
void RestoreViewport ()
 Restore the saved viewport.
 
void SaveModelviewMatrix () const
 Save the modelview matrix.
 
void SaveProjectionMatrix () const
 Save the projection matrix.
 
void SaveViewport ()
 Extract and save the current viewport.
 

Private Attributes

TGLFont fF
 
TGLFontManager fFM
 
Bool_t fIsHollowArea
 
Rgl::Pad::GLLimits fLimits
 
Bool_t fLocked
 
Rgl::Pad::MarkerPainter fMarker
 
std::vector< TPointfPoly
 
Rgl::Pad::PolygonStippleSet fSSet
 
Rgl::Pad::Tesselator fTess
 
Int_t fVp [4]
 
std::vector< Double_tfVs
 

Additional Inherited Members

- Public Types inherited from TVirtualPadPainter
enum  EBoxMode { kHollow , kFilled }
 
enum  ETextMode { kClear , kOpaque }
 
- Static Public Member Functions inherited from TVirtualPadPainter
static TVirtualPadPainterPadPainter (Option_t *opt="")
 Create a pad painter of specified type.
 

#include <TGLPadPainter.h>

Inheritance diagram for TGLPadPainter:
[legend]

Constructor & Destructor Documentation

◆ TGLPadPainter() [1/2]

TGLPadPainter::TGLPadPainter ( )

Definition at line 58 of file TGLPadPainter.cxx.

◆ TGLPadPainter() [2/2]

TGLPadPainter::TGLPadPainter ( const TGLPadPainter rhs)
private

Member Function Documentation

◆ ClearDrawable()

void TGLPadPainter::ClearDrawable ( )
virtual

Not required at the moment.

Implements TVirtualPadPainter.

Definition at line 274 of file TGLPadPainter.cxx.

◆ CopyDrawable()

void TGLPadPainter::CopyDrawable ( Int_t  device,
Int_t  px,
Int_t  py 
)
virtual

Not required at the moment.

Implements TVirtualPadPainter.

Definition at line 281 of file TGLPadPainter.cxx.

◆ CreateDrawable()

Int_t TGLPadPainter::CreateDrawable ( UInt_t  w,
UInt_t  h 
)
virtual

Not required at the moment.

Implements TVirtualPadPainter.

Definition at line 266 of file TGLPadPainter.cxx.

◆ DestroyDrawable()

void TGLPadPainter::DestroyDrawable ( Int_t  device)
virtual

Not required at the moment.

Implements TVirtualPadPainter.

Definition at line 288 of file TGLPadPainter.cxx.

◆ DrawBox()

void TGLPadPainter::DrawBox ( Double_t  x1,
Double_t  y1,
Double_t  x2,
Double_t  y2,
EBoxMode  mode 
)
virtual

Draw filled or hollow box.

Implements TVirtualPadPainter.

Definition at line 466 of file TGLPadPainter.cxx.

◆ DrawFillArea() [1/2]

void TGLPadPainter::DrawFillArea ( Int_t  n,
const Double_t x,
const Double_t y 
)
virtual

Draw tesselated polygon (probably, outline only).

Implements TVirtualPadPainter.

Definition at line 493 of file TGLPadPainter.cxx.

◆ DrawFillArea() [2/2]

void TGLPadPainter::DrawFillArea ( Int_t  n,
const Float_t x,
const Float_t y 
)
virtual

Draw tesselated polygon (never called, probably, since TPad::PaintFillArea for floats is deprecated).

Implements TVirtualPadPainter.

Definition at line 523 of file TGLPadPainter.cxx.

◆ DrawGradient() [1/2]

void TGLPadPainter::DrawGradient ( const TLinearGradient gradient,
Int_t  n,
const Double_t x,
const Double_t y 
)
private

Definition at line 1337 of file TGLPadPainter.cxx.

◆ DrawGradient() [2/2]

void TGLPadPainter::DrawGradient ( const TRadialGradient gradient,
Int_t  n,
const Double_t x,
const Double_t y 
)
private

Definition at line 1158 of file TGLPadPainter.cxx.

◆ DrawLine()

void TGLPadPainter::DrawLine ( Double_t  x1,
Double_t  y1,
Double_t  x2,
Double_t  y2 
)
virtual

Draw line segment.

Implements TVirtualPadPainter.

Definition at line 405 of file TGLPadPainter.cxx.

◆ DrawLineNDC()

void TGLPadPainter::DrawLineNDC ( Double_t  u1,
Double_t  v1,
Double_t  u2,
Double_t  v2 
)
virtual

Draw line segment in NDC coordinates.

Implements TVirtualPadPainter.

Definition at line 449 of file TGLPadPainter.cxx.

◆ DrawPixels()

void TGLPadPainter::DrawPixels ( const unsigned char *  pixelData,
UInt_t  width,
UInt_t  height,
Int_t  dstX,
Int_t  dstY,
Bool_t  enableBlending 
)
virtual

Implements TVirtualPadPainter.

Definition at line 1026 of file TGLPadPainter.cxx.

◆ DrawPolygonWithGradient()

void TGLPadPainter::DrawPolygonWithGradient ( Int_t  n,
const Double_t x,
const Double_t y 
)
private

At the moment I assume both linear and radial gradients will work the same way - using a stencil buffer and some big rectangle(s) to fill with a gradient.

Thus I have a 'common' part - the part responsible for a stencil test.

Definition at line 1104 of file TGLPadPainter.cxx.

◆ DrawPolyLine() [1/2]

void TGLPadPainter::DrawPolyLine ( Int_t  n,
const Double_t x,
const Double_t y 
)
virtual

Draw poly-line in user coordinates.

Implements TVirtualPadPainter.

Definition at line 555 of file TGLPadPainter.cxx.

◆ DrawPolyLine() [2/2]

void TGLPadPainter::DrawPolyLine ( Int_t  n,
const Float_t x,
const Float_t y 
)
virtual

Never called?

Implements TVirtualPadPainter.

Definition at line 592 of file TGLPadPainter.cxx.

◆ DrawPolyLineNDC()

void TGLPadPainter::DrawPolyLineNDC ( Int_t  n,
const Double_t u,
const Double_t v 
)
virtual

Poly line in NDC.

Implements TVirtualPadPainter.

Definition at line 614 of file TGLPadPainter.cxx.

◆ DrawPolyMarker() [1/3]

void TGLPadPainter::DrawPolyMarker ( )
private

Poly-marker.

Definition at line 664 of file TGLPadPainter.cxx.

◆ DrawPolyMarker() [2/3]

void TGLPadPainter::DrawPolyMarker ( Int_t  n,
const Double_t x,
const Double_t y 
)
virtual

Poly-marker.

Implements TVirtualPadPainter.

Definition at line 642 of file TGLPadPainter.cxx.

◆ DrawPolyMarker() [3/3]

void TGLPadPainter::DrawPolyMarker ( Int_t  n,
const Float_t x,
const Float_t y 
)
virtual

Poly-marker.

Implements TVirtualPadPainter.

Definition at line 653 of file TGLPadPainter.cxx.

◆ DrawTesselation()

void TGLPadPainter::DrawTesselation ( Int_t  n,
const Double_t x,
const Double_t y 
)
private

Definition at line 1458 of file TGLPadPainter.cxx.

◆ DrawText() [1/2]

void TGLPadPainter::DrawText ( Double_t  x,
Double_t  y,
const char *  text,
ETextMode  mode 
)
virtual

Draw text.

This operation is especially dangerous if in locked state - ftgl will assert on zero texture size (which is result of bad GL context).

Implements TVirtualPadPainter.

Definition at line 856 of file TGLPadPainter.cxx.

◆ DrawText() [2/2]

void TGLPadPainter::DrawText ( Double_t  x,
Double_t  y,
const wchar_t *  text,
ETextMode  mode 
)
virtual

Draw text.

This operation is especially dangerous if in locked state - ftgl will assert on zero texture size (which is result of bad GL context).

Implements TVirtualPadPainter.

Definition at line 872 of file TGLPadPainter.cxx.

◆ DrawTextHelper() [1/2]

template<class Char >
void TGLPadPainter::DrawTextHelper ( Double_t  x,
Double_t  y,
const Char *  text,
ETextMode   
)

Definition at line 811 of file TGLPadPainter.cxx.

◆ DrawTextHelper() [2/2]

template<class Char_t >
void TGLPadPainter::DrawTextHelper ( Double_t  x,
Double_t  y,
const Char_t text,
ETextMode  mode 
)
private

◆ DrawTextNDC() [1/2]

void TGLPadPainter::DrawTextNDC ( Double_t  u,
Double_t  v,
const char *  text,
ETextMode  mode 
)
virtual

Draw text in NDC.

This operation is especially dangerous if in locked state - ftgl will assert on zero texture size (which is result of bad GL context).

Implements TVirtualPadPainter.

Definition at line 888 of file TGLPadPainter.cxx.

◆ DrawTextNDC() [2/2]

void TGLPadPainter::DrawTextNDC ( Double_t  u,
Double_t  v,
const wchar_t *  text,
ETextMode  mode 
)
virtual

Draw text in NDC.

This operation is especially dangerous if in locked state - ftgl will assert on zero texture size (which is result of bad GL context).

Implements TVirtualPadPainter.

Definition at line 903 of file TGLPadPainter.cxx.

◆ GetFillColor()

Color_t TGLPadPainter::GetFillColor ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 117 of file TGLPadPainter.cxx.

◆ GetFillStyle()

Style_t TGLPadPainter::GetFillStyle ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 125 of file TGLPadPainter.cxx.

◆ GetLineColor()

Color_t TGLPadPainter::GetLineColor ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 69 of file TGLPadPainter.cxx.

◆ GetLineStyle()

Style_t TGLPadPainter::GetLineStyle ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 77 of file TGLPadPainter.cxx.

◆ GetLineWidth()

Width_t TGLPadPainter::GetLineWidth ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 85 of file TGLPadPainter.cxx.

◆ GetTextAlign()

Short_t TGLPadPainter::GetTextAlign ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 166 of file TGLPadPainter.cxx.

◆ GetTextAngle()

Float_t TGLPadPainter::GetTextAngle ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 174 of file TGLPadPainter.cxx.

◆ GetTextColor()

Color_t TGLPadPainter::GetTextColor ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 182 of file TGLPadPainter.cxx.

◆ GetTextFont()

Font_t TGLPadPainter::GetTextFont ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 190 of file TGLPadPainter.cxx.

◆ GetTextMagnitude()

Float_t TGLPadPainter::GetTextMagnitude ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 206 of file TGLPadPainter.cxx.

◆ GetTextSize()

Float_t TGLPadPainter::GetTextSize ( ) const
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 198 of file TGLPadPainter.cxx.

◆ InitPainter()

void TGLPadPainter::InitPainter ( )
virtual

Init gl-pad painter:

  1. 2D painter does not use depth test, should not modify depth-buffer content (except initial cleanup).
  2. Disable cull face.
  3. Disable lighting.
  4. Set viewport (to the whole canvas area).
  5. Set camera.
  6. Unlock painter.

Reimplemented from TVirtualPadPainter.

Definition at line 341 of file TGLPadPainter.cxx.

◆ InvalidateCS()

void TGLPadPainter::InvalidateCS ( )
virtual

When TPad::Range for gPad is called, projection must be changed in OpenGL.

Reimplemented from TVirtualPadPainter.

Definition at line 371 of file TGLPadPainter.cxx.

◆ IsTransparent()

Bool_t TGLPadPainter::IsTransparent ( ) const
virtual

Delegate to gVirtualX.

IsTransparent is implemented as inline function in TAttFill.

Implements TVirtualPadPainter.

Definition at line 134 of file TGLPadPainter.cxx.

◆ LockPainter()

void TGLPadPainter::LockPainter ( )
virtual

Locked state of painter means, that GL context can be invalid, so no GL calls can be executed.

Reimplemented from TVirtualPadPainter.

Definition at line 388 of file TGLPadPainter.cxx.

◆ operator=()

TGLPadPainter & TGLPadPainter::operator= ( const TGLPadPainter rhs)
private

◆ RestoreModelviewMatrix()

void TGLPadPainter::RestoreModelviewMatrix ( ) const
private

Restore the modelview matrix.

Attention! GL_MODELVIEW will become the current matrix after this call!

Definition at line 950 of file TGLPadPainter.cxx.

◆ RestoreProjectionMatrix()

void TGLPadPainter::RestoreProjectionMatrix ( ) const
private

Restore the projection matrix.

Attention! GL_PROJECTION will become the current matrix after this call!

Definition at line 928 of file TGLPadPainter.cxx.

◆ RestoreViewport()

void TGLPadPainter::RestoreViewport ( )
private

Restore the saved viewport.

Definition at line 967 of file TGLPadPainter.cxx.

◆ SaveImage()

void TGLPadPainter::SaveImage ( TVirtualPad pad,
const char *  fileName,
Int_t  type 
) const
virtual

Using TImage save frame-buffer contents as a picture.

Implements TVirtualPadPainter.

Definition at line 975 of file TGLPadPainter.cxx.

◆ SaveModelviewMatrix()

void TGLPadPainter::SaveModelviewMatrix ( ) const
private

Save the modelview matrix.

Attention! GL_MODELVIEW will become the current matrix after this call!

Definition at line 939 of file TGLPadPainter.cxx.

◆ SaveProjectionMatrix()

void TGLPadPainter::SaveProjectionMatrix ( ) const
private

Save the projection matrix.

Attention! GL_PROJECTION will become the current matrix after this call!

Definition at line 917 of file TGLPadPainter.cxx.

◆ SaveViewport()

void TGLPadPainter::SaveViewport ( )
private

Extract and save the current viewport.

Definition at line 959 of file TGLPadPainter.cxx.

◆ SelectDrawable()

void TGLPadPainter::SelectDrawable ( Int_t  device)
virtual

For gVirtualX this means select pixmap (or window) and all subsequent drawings will go into this pixmap.

For OpenGL this means the change of coordinate system and viewport.

Implements TVirtualPadPainter.

Definition at line 298 of file TGLPadPainter.cxx.

◆ SetFillColor()

void TGLPadPainter::SetFillColor ( Color_t  fcolor)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 142 of file TGLPadPainter.cxx.

◆ SetFillStyle()

void TGLPadPainter::SetFillStyle ( Style_t  fstyle)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 150 of file TGLPadPainter.cxx.

◆ SetLineColor()

void TGLPadPainter::SetLineColor ( Color_t  lcolor)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 93 of file TGLPadPainter.cxx.

◆ SetLineStyle()

void TGLPadPainter::SetLineStyle ( Style_t  lstyle)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 101 of file TGLPadPainter.cxx.

◆ SetLineWidth()

void TGLPadPainter::SetLineWidth ( Width_t  lwidth)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 109 of file TGLPadPainter.cxx.

◆ SetOpacity()

void TGLPadPainter::SetOpacity ( Int_t  percent)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 158 of file TGLPadPainter.cxx.

◆ SetTextAlign()

void TGLPadPainter::SetTextAlign ( Short_t  align)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 214 of file TGLPadPainter.cxx.

◆ SetTextAngle()

void TGLPadPainter::SetTextAngle ( Float_t  tangle)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 222 of file TGLPadPainter.cxx.

◆ SetTextColor()

void TGLPadPainter::SetTextColor ( Color_t  tcolor)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 230 of file TGLPadPainter.cxx.

◆ SetTextFont()

void TGLPadPainter::SetTextFont ( Font_t  tfont)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 238 of file TGLPadPainter.cxx.

◆ SetTextSize()

void TGLPadPainter::SetTextSize ( Float_t  tsize)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 246 of file TGLPadPainter.cxx.

◆ SetTextSizePixels()

void TGLPadPainter::SetTextSizePixels ( Int_t  npixels)
virtual

Delegate to gVirtualX.

Implements TVirtualPadPainter.

Definition at line 254 of file TGLPadPainter.cxx.

Member Data Documentation

◆ fF

TGLFont TGLPadPainter::fF
private

Definition at line 38 of file TGLPadPainter.h.

◆ fFM

TGLFontManager TGLPadPainter::fFM
private

Definition at line 37 of file TGLPadPainter.h.

◆ fIsHollowArea

Bool_t TGLPadPainter::fIsHollowArea
private

Definition at line 43 of file TGLPadPainter.h.

◆ fLimits

Rgl::Pad::GLLimits TGLPadPainter::fLimits
private

Definition at line 33 of file TGLPadPainter.h.

◆ fLocked

Bool_t TGLPadPainter::fLocked
private

Definition at line 45 of file TGLPadPainter.h.

◆ fMarker

Rgl::Pad::MarkerPainter TGLPadPainter::fMarker
private

Definition at line 32 of file TGLPadPainter.h.

◆ fPoly

std::vector<TPoint> TGLPadPainter::fPoly
private

Definition at line 42 of file TGLPadPainter.h.

◆ fSSet

Rgl::Pad::PolygonStippleSet TGLPadPainter::fSSet
private

Definition at line 30 of file TGLPadPainter.h.

◆ fTess

Rgl::Pad::Tesselator TGLPadPainter::fTess
private

Definition at line 31 of file TGLPadPainter.h.

◆ fVp

Int_t TGLPadPainter::fVp[4]
private

Definition at line 40 of file TGLPadPainter.h.

◆ fVs

std::vector<Double_t> TGLPadPainter::fVs
private

Definition at line 35 of file TGLPadPainter.h.

Libraries for TGLPadPainter:

The documentation for this class was generated from the following files: