Warning, file /include/root/TGLSphere.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef ROOT_TGLSphere
0015 #define ROOT_TGLSphere
0016
0017 #include "TGLLogicalShape.h"
0018
0019 class TBuffer3DSphere;
0020
0021 class TGLSphere : public TGLLogicalShape
0022 {
0023 private:
0024 Double_t fRadius;
0025
0026 public:
0027 TGLSphere(const TBuffer3DSphere &buffer);
0028
0029 UInt_t DLOffset(Short_t lod) const override;
0030
0031 ELODAxes SupportedLODAxes() const override { return kLODAxesAll; }
0032 Short_t QuantizeShapeLOD(Short_t shapeLOD, Short_t combiLOD) const override;
0033 void DirectDraw(TGLRnrCtx & rnrCtx) const override;
0034
0035 ClassDefOverride(TGLSphere,0);
0036 };
0037
0038 #endif