Warning, file /include/root/TEveArrowGL.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 #ifndef ROOT_TEveArrowGL
0013 #define ROOT_TEveArrowGL
0014
0015 #include "TGLObject.h"
0016
0017 class TGLViewer;
0018 class TGLScene;
0019 class TEveArrow;
0020
0021 class TEveArrowGL : public TGLObject
0022 {
0023 private:
0024 TEveArrowGL(const TEveArrowGL&);
0025 TEveArrowGL& operator=(const TEveArrowGL&);
0026
0027 protected:
0028 mutable TEveArrow *fM;
0029
0030 public:
0031 TEveArrowGL();
0032 ~TEveArrowGL() override {}
0033
0034 Bool_t SetModel(TObject* obj, const Option_t *opt = nullptr) override;
0035 void SetBBox() override;
0036 void DirectDraw(TGLRnrCtx & rnrCtx) const override;
0037
0038 ClassDefOverride(TEveArrowGL, 0);
0039 };
0040
0041 #endif