ROOT logo
// $Id: Glass_SKEL.h 2089 2008-11-23 20:31:03Z 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/.

/**************************************************************************/
// Plant - extension of Weed class. Has virtual functions to draw
// segments, leaf and flower as polygons.
/**************************************************************************/

#ifndef Tmp1_Plant_H
#define Tmp1_Plant_H

#include <Glasses/Weed.h>

class Plant : public Weed
{
  MAC_RNR_FRIENDS(Plant);
  
private:
  void _init();
  
protected:
  
public:
  Plant(const Text_t* n="Plant", const Text_t* t=0);
  virtual ~Plant();
  
  Double_t mStemWidth;   // X{GST} 7 Value(-range=>[0, 1, 1, 1000])
  Double_t mLeafSize;    // X{GST} 7 Value(-range=>[0, 1, 1, 100])
  Double_t mFlowerSize;  // X{GST} 7 Value(-range=>[0, 1, 1, 100])
  
#include "Plant.h7"
  ClassDef(Plant, 1);
}; // endclass Plant

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