** Warning **
Issuing rollback() due to DESTROY without explicit disconnect() of DBD::mysql::db handle dbname=lxr_eic at /usr/local/share/lxr/lxr-2.3.7/lib/LXR/Common.pm line 1161, <GEN159> line 1.
Last-Modified: Thu, 17 Sep 2025 09:23:46 GMT
Content-Type: text/html; charset=utf-8
/master/include/root/TEveBoxGL.h
File indexing completed on 2025-09-17 09:15:30
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TEveBoxGL
0013 #define ROOT_TEveBoxGL
0014
0015 #include "TGLObject.h "
0016
0017 class TGLViewer ;
0018 class TGLScene ;
0019
0020 class TEveBox ;
0021 class TEveBoxProjected ;
0022
0023
0024
0025
0026
0027 class TEveBoxGL : public TGLObject
0028 {
0029 private :
0030 TEveBoxGL (const TEveBoxGL &);
0031 TEveBoxGL & operator =(const TEveBoxGL &);
0032
0033 protected :
0034 TEveBox *fM ;
0035
0036 void RenderOutline (const Float_t p [8][3]) const ;
0037 void RenderBoxStdNorm (const Float_t p [8][3]) const ;
0038 void RenderBoxAutoNorm (const Float_t p [8][3]) const ;
0039
0040 public :
0041 TEveBoxGL ();
0042 ~TEveBoxGL () override {}
0043
0044 Bool_t SetModel (TObject * obj , const Option_t *opt = nullptr) override ;
0045 void SetBBox () override ;
0046
0047 void Draw (TGLRnrCtx & rnrCtx) const override ;
0048 void DirectDraw (TGLRnrCtx & rnrCtx) const override ;
0049
0050 Bool_t IgnoreSizeForOfInterest () const override { return kTRUE ; }
0051
0052
0053
0054
0055
0056 ClassDefOverride (TEveBoxGL , 0);
0057 };
0058
0059
0060
0061
0062
0063
0064 class TEveBoxProjectedGL : public TGLObject
0065 {
0066 private :
0067 TEveBoxProjectedGL (const TEveBoxProjectedGL &);
0068 TEveBoxProjectedGL & operator =(const TEveBoxProjectedGL &);
0069
0070 protected :
0071 TEveBoxProjected *fM ;
0072
0073 void RenderPoints (Int_t mode ) const ;
0074
0075 public :
0076 TEveBoxProjectedGL ();
0077 ~TEveBoxProjectedGL () override {}
0078
0079 Bool_t SetModel (TObject * obj , const Option_t *opt = nullptr) override ;
0080 void SetBBox () override ;
0081
0082 void Draw (TGLRnrCtx & rnrCtx) const override ;
0083 void DirectDraw (TGLRnrCtx & rnrCtx) const override ;
0084
0085 Bool_t IgnoreSizeForOfInterest () const override { return kTRUE ; }
0086
0087
0088
0089
0090
0091 ClassDefOverride (TEveBoxProjectedGL , 0);
0092 };
0093
0094 #endif