#ifndef ROOT_TGLDrawFlags
#define ROOT_TGLDrawFlags
#ifndef ROOT_Rtypes
#include "Rtypes.h"
#endif
class TGLDrawFlags
{
public:
enum EStyle { kFill, kOutline, kWireFrame };
enum ELODPresets {
kLODPixel = 0,
kLODLow = 20,
kLODMed = 50,
kLODHigh = 100,
kLODUnsupported = 200
};
private:
EStyle fStyle;
Short_t fLOD;
Bool_t fSelection;
Bool_t fSecSelection;
public:
TGLDrawFlags(EStyle style = kFill, Short_t LOD = kLODHigh,
Bool_t sel = kFALSE, Bool_t secSel = kFALSE);
virtual ~TGLDrawFlags();
EStyle Style() const { return fStyle; }
void SetStyle(EStyle style) { fStyle = style; }
Short_t LOD() const { return fLOD; }
void SetLOD(Short_t LOD) { fLOD = LOD; }
Bool_t Selection() const { return fSelection; }
void SetSelection(Bool_t sel) { fSelection = sel; }
Bool_t SecSelection() const { return fSecSelection; }
void SetSecSelection(Bool_t secSel) { fSecSelection = secSel; }
ClassDef(TGLDrawFlags,0)
};
#endif // ROOT_TGLDrawFlags
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.