ROOT logo
// $Id: Glass_SKEL.cxx 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/.

#include "Plant.h"
#include "Plant.c7"

// Plant

//______________________________________________________________________________
//
//

ClassImp(Plant);

//==============================================================================

void Plant::_init()
{}

Plant::Plant(const Text_t* n, const Text_t* t) :
Weed(n, t),
mStemWidth(0.015),
mLeafSize(0.5),
mFlowerSize(0.4)
{
  _init();
}

Plant::~Plant()
{}

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