ROOT logo
// $Id: Box.h 2088 2008-11-23 20:26:46Z matevz $

// Copyright (C) 1999-2008, Matevz Tadel. All rights reserved.
// This file is part of GLED, released under GNU General Public License version 2.
// For the licensing terms see $GLEDSYS/LICENSE or http://www.gnu.org/.

#ifndef GledCore_Box_H
#define GledCore_Box_H

#include <Glasses/ZNode.h>
#include <Stones/ZColor.h>

class Box : public ZNode {
  MAC_RNR_FRIENDS(Box);

private:
  void _init();

protected:
  Float_t	mA;	// X{GS}  7 Value(-range=>[0,1000,1,100], -join=>1)
  Float_t	mB;	// X{GS}  7 Value(-range=>[0,1000,1,100], -join=>1)
  Float_t	mC;	// X{GS}  7 Value(-range=>[0,1000,1,100])
  ZColor	mColor;	// X{PGS} 7 ColorButt()
public:
  Box(const Text_t* n="Box", const Text_t* t=0) : ZNode(n,t) { _init(); }

  void SetABC(Float_t a, Float_t b, Float_t c); // X{E}

#include "Box.h7"
  ClassDef(Box, 1);
}; // endclass Box


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