// $Header: /cvs/gled-1.2/GledCore/Glasses/Cylinder.cxx,v 1.2 2005/05/26 17:34:41 matevz Exp $

// Copyright (C) 1999-2004, 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/.

//__________________________________________________________________________
// Cylinder
//
// Cylinder along z-axis from z=-mHeight/2 -> z=mHeight/2.
// Specify In(ner) / Out(er) radii at Base (-z) and Top (+z).
// bRnrDisks selects rendering of end-caps.
// Independent of mLodPhi, a corner of the base polygon is pointing towards
// the positive y-axis.

#include "Cylinder.h"
#include "Cylinder.c7"

ClassImp(Cylinder)

 void Cylinder::_init()
{
  mOrientation = O_Z;

  mHeight = 2;
  bRnrDisks = true;

  mROutBase = mROutTop = 1.0;
  mRInBase  = mRInTop  = 0; 

  mLodH     = 1;
  mLodPhi   = 8;
}


ROOT page - Home page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.