VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkMassProperties.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 =========================================================================*/ 00038 #ifndef __vtkMassProperties_h 00039 #define __vtkMassProperties_h 00040 00041 #include "vtkFiltersCoreModule.h" // For export macro 00042 #include "vtkPolyDataAlgorithm.h" 00043 00044 class VTKFILTERSCORE_EXPORT vtkMassProperties : public vtkPolyDataAlgorithm 00045 { 00046 public: 00048 static vtkMassProperties *New(); 00049 00050 vtkTypeMacro(vtkMassProperties,vtkPolyDataAlgorithm); 00051 void PrintSelf(ostream& os, vtkIndent indent); 00052 00054 double GetVolume() {this->Update(); return this->Volume;} 00055 00061 double GetVolumeProjected() {this->Update(); return this->VolumeProjected;} 00062 00064 00066 double GetVolumeX() {this->Update(); return this->VolumeX;} 00067 double GetVolumeY() {this->Update(); return this->VolumeY;} 00068 double GetVolumeZ() {this->Update(); return this->VolumeZ;} 00070 00072 00074 double GetKx() {this->Update(); return this->Kx;} 00075 double GetKy() {this->Update(); return this->Ky;} 00076 double GetKz() {this->Update(); return this->Kz;} 00078 00080 double GetSurfaceArea() {this->Update(); return this->SurfaceArea;} 00081 00083 double GetMinCellArea() {this->Update(); return this->MinCellArea;} 00084 00086 double GetMaxCellArea() {this->Update(); return this->MaxCellArea;} 00087 00089 00092 double GetNormalizedShapeIndex() 00093 {this->Update(); return this->NormalizedShapeIndex;} 00095 00096 protected: 00097 vtkMassProperties(); 00098 ~vtkMassProperties(); 00099 00100 virtual int RequestData(vtkInformation* request, 00101 vtkInformationVector** inputVector, 00102 vtkInformationVector* outputVector); 00103 00104 double SurfaceArea; 00105 double MinCellArea; 00106 double MaxCellArea; 00107 double Volume; 00108 double VolumeProjected; // == Projected area of triangles * average z values 00109 double VolumeX; 00110 double VolumeY; 00111 double VolumeZ; 00112 double Kx; 00113 double Ky; 00114 double Kz; 00115 double NormalizedShapeIndex; 00116 00117 private: 00118 vtkMassProperties(const vtkMassProperties&); // Not implemented. 00119 void operator=(const vtkMassProperties&); // Not implemented. 00120 }; 00121 00122 #endif 00123 00124