Main Page | Directories | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

vtkMeshQuality.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    $RCSfile: vtkMeshQuality.h,v $
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 =========================================================================*/
00045 #ifndef __vtkMeshQuality_h
00046 #define __vtkMeshQuality_h
00047 
00048 #include "vtkDataSetToDataObjectFilter.h"
00049 
00050 class VTK_GRAPHICS_EXPORT vtkMeshQuality : public vtkDataSetToDataObjectFilter
00051 {
00052 public:
00053   static vtkMeshQuality *New();  
00054   vtkTypeRevisionMacro(vtkMeshQuality,vtkDataSetToDataObjectFilter);
00055   void PrintSelf(ostream& os, vtkIndent indent);
00056 
00058 
00061   vtkSetMacro(Volume,int);
00062   vtkGetMacro(Volume,int);
00063   vtkBooleanMacro(Volume,int);
00065 
00067 
00073   vtkSetMacro(Ratio,int);
00074   vtkGetMacro(Ratio,int);
00075   vtkBooleanMacro(Ratio,int);
00077  
00078 
00079 protected:
00080   vtkMeshQuality();
00081   ~vtkMeshQuality();
00082   void Execute();
00083 
00084   int Volume;
00085   int Ratio;
00086 
00087 
00088 private:
00089   vtkMeshQuality(const vtkMeshQuality&);  // Not implemented.
00090   void operator=(const vtkMeshQuality&);  // Not implemented.
00091 
00092 };
00093 
00094 #endif
00095