VTK
dox/Common/DataModel/vtkCylinder.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkCylinder.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00032 #ifndef __vtkCylinder_h
00033 #define __vtkCylinder_h
00034 
00035 #include "vtkCommonDataModelModule.h" // For export macro
00036 #include "vtkImplicitFunction.h"
00037 
00038 class VTKCOMMONDATAMODEL_EXPORT vtkCylinder : public vtkImplicitFunction
00039 {
00040 public:
00041   vtkTypeMacro(vtkCylinder,vtkImplicitFunction);
00042   void PrintSelf(ostream& os, vtkIndent indent);
00043 
00045   static vtkCylinder *New();
00046 
00048 
00049   double EvaluateFunction(double x[3]);
00050   double EvaluateFunction(double x, double y, double z)
00051     {return this->vtkImplicitFunction::EvaluateFunction(x, y, z); } ;
00053 
00055   void EvaluateGradient(double x[3], double g[3]);
00056 
00058 
00059   vtkSetMacro(Radius,double);
00060   vtkGetMacro(Radius,double);
00062 
00064 
00065   vtkSetVector3Macro(Center,double);
00066   vtkGetVectorMacro(Center,double,3);
00067 protected:
00068   vtkCylinder();
00069   ~vtkCylinder() {};
00071 
00072   double Radius;
00073   double Center[3];
00074 
00075 private:
00076   vtkCylinder(const vtkCylinder&);  // Not implemented.
00077   void operator=(const vtkCylinder&);  // Not implemented.
00078 };
00079 
00080 #endif
00081 
00082