ROOT logo
// @(#)root/gl:$Id: TPointSet3DGL.h 21653 2008-01-11 20:23:15Z matevz $
// Author: Matevz Tadel  7/4/2006

/*************************************************************************
 * Copyright (C) 1995-2006, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/


#ifndef ROOT_TPointSet3DGL
#define ROOT_TPointSet3DGL

#ifndef ROOT_TGLObject
#include "TGLObject.h"
#endif

class TGLRnrCtx;

class TPointSet3DGL : public TGLObject
{
public:
   TPointSet3DGL() : TGLObject() {}

   virtual Bool_t SetModel(TObject* obj, const Option_t* opt=0);
   virtual void   SetBBox();
   virtual void   DirectDraw(TGLRnrCtx & rnrCtx) const;

   virtual Bool_t IgnoreSizeForOfInterest() const { return kTRUE; }

   virtual Bool_t ShouldDLCache(const TGLRnrCtx & rnrCtx) const;

   virtual void   Draw(TGLRnrCtx & rnrCtx) const;

   virtual Bool_t SupportsSecondarySelect() const { return kTRUE; }
   virtual void   ProcessSelection(TGLRnrCtx & rnrCtx, TGLSelectRecord & rec);

   ClassDef(TPointSet3DGL,1)  // GL renderer for TPointSet3D
};

#endif
 TPointSet3DGL.h:1
 TPointSet3DGL.h:2
 TPointSet3DGL.h:3
 TPointSet3DGL.h:4
 TPointSet3DGL.h:5
 TPointSet3DGL.h:6
 TPointSet3DGL.h:7
 TPointSet3DGL.h:8
 TPointSet3DGL.h:9
 TPointSet3DGL.h:10
 TPointSet3DGL.h:11
 TPointSet3DGL.h:12
 TPointSet3DGL.h:13
 TPointSet3DGL.h:14
 TPointSet3DGL.h:15
 TPointSet3DGL.h:16
 TPointSet3DGL.h:17
 TPointSet3DGL.h:18
 TPointSet3DGL.h:19
 TPointSet3DGL.h:20
 TPointSet3DGL.h:21
 TPointSet3DGL.h:22
 TPointSet3DGL.h:23
 TPointSet3DGL.h:24
 TPointSet3DGL.h:25
 TPointSet3DGL.h:26
 TPointSet3DGL.h:27
 TPointSet3DGL.h:28
 TPointSet3DGL.h:29
 TPointSet3DGL.h:30
 TPointSet3DGL.h:31
 TPointSet3DGL.h:32
 TPointSet3DGL.h:33
 TPointSet3DGL.h:34
 TPointSet3DGL.h:35
 TPointSet3DGL.h:36
 TPointSet3DGL.h:37
 TPointSet3DGL.h:38
 TPointSet3DGL.h:39
 TPointSet3DGL.h:40
 TPointSet3DGL.h:41
 TPointSet3DGL.h:42
 TPointSet3DGL.h:43