// @(#)root/g3d:$Id$
// Author: Nenad Buncic   17/09/95

/*************************************************************************
 * Copyright (C) 1995-2000, 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_TBRIK
#define ROOT_TBRIK


////////////////////////////////////////////////////////////////////////////
//                                                                        //
// TBRIK                                                                  //
//                                                                        //
// BRIK is a box. It has 3 parameters, the half length in x, y, and z     //
//                                                                        //
////////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TShape
#include "TShape.h"
#endif

class TBRIK : public TShape {

protected:
   Float_t fDx;        // half length in x
   Float_t fDy;        // half length in y
   Float_t fDz;        // half length in z

   virtual void    SetPoints(Double_t * points) const;
public:
   TBRIK();
   TBRIK(const char *name, const char *title, const char *material, Float_t dx, Float_t dy, Float_t dz);
   virtual ~TBRIK();

   virtual Int_t   DistancetoPrimitive(Int_t px, Int_t py);
   virtual const TBuffer3D &GetBuffer3D(Int_t reqSections) const;
   Float_t         GetDx() const {return fDx;}
   Float_t         GetDy() const {return fDy;}
   Float_t         GetDz() const {return fDz;}
   virtual void    Sizeof3D() const;

   ClassDef(TBRIK,1)  //TBRIK shape
};

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