// @(#)root/gl:$Id$
// Author:  Timur Pocheptsov  03/08/2004
// NOTE: This code moved from obsoleted TGLSceneObject.h / .cxx - see these
// attic files for previous CVS history

/*************************************************************************
 * 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_TGLSphere
#define ROOT_TGLSphere

#ifndef ROOT_TGLLogicalShape
#include "TGLLogicalShape.h"
#endif

class TBuffer3DSphere;

class TGLSphere : public TGLLogicalShape
{
private:
   Double_t fRadius; // Sphere radius

public:
   TGLSphere(const TBuffer3DSphere &buffer);

   virtual UInt_t DLOffset(Short_t lod) const;

   virtual ELODAxes SupportedLODAxes() const { return kLODAxesAll; }
   virtual Short_t  QuantizeShapeLOD(Short_t shapeLOD, Short_t combiLOD) const;
   virtual void     DirectDraw(TGLRnrCtx & rnrCtx) const;

   ClassDef(TGLSphere,0); // a spherical logical shape
};

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