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

Graphics/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 =========================================================================*/
00034 #ifndef __vtkMeshQuality_h
00035 #define __vtkMeshQuality_h
00036 
00037 #include "vtkDataSetToDataObjectFilter.h"
00038 
00039 class VTK_GRAPHICS_EXPORT vtkMeshQuality : public vtkDataSetToDataObjectFilter
00040 {
00041 public:
00042   static vtkMeshQuality *New();  
00043   vtkTypeRevisionMacro(vtkMeshQuality,vtkDataSetToDataObjectFilter);
00044   void PrintSelf(ostream& os, vtkIndent indent);
00045 
00047 
00050   vtkSetMacro(Volume,int);
00051   vtkGetMacro(Volume,int);
00052   vtkBooleanMacro(Volume,int);
00054 
00056 
00062   vtkSetMacro(Ratio,int);
00063   vtkGetMacro(Ratio,int);
00064   vtkBooleanMacro(Ratio,int);
00066  
00067 
00068 protected:
00069   vtkMeshQuality();
00070   ~vtkMeshQuality();
00071   void Execute();
00072 
00073   int Volume;
00074   int Ratio;
00075 
00076 
00077 private:
00078   vtkMeshQuality(const vtkMeshQuality&);  // Not implemented.
00079   void operator=(const vtkMeshQuality&);  // Not implemented.
00080 
00081 };
00082 
00083 #endif
00084