VTK
vtkPCellSizeFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPCellSizeFilter.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
38 #ifndef vtkPCellSizeFilter_h
39 #define vtkPCellSizeFilter_h
40 
41 #include "vtkFiltersParallelVerdictModule.h" // For export macro
42 #include "vtkCellSizeFilter.h"
43 
44 class VTKFILTERSPARALLELVERDICT_EXPORT vtkPCellSizeFilter : public vtkCellSizeFilter
45 {
46 public:
48  static vtkPCellSizeFilter* New();
49 
50 protected:
52  ~vtkPCellSizeFilter() override;
53 
55 
58  virtual void ComputeGlobalSum(double sum[4]) override;
60 
61 private:
62  vtkPCellSizeFilter(const vtkPCellSizeFilter&) = delete;
63  void operator=(const vtkPCellSizeFilter&) = delete;
64 };
65 
66 #endif
Computes cell sizes.
static vtkCellSizeFilter * New()
Computes cell sizes in parallel.
virtual void ComputeGlobalSum(double sum[4])
Method to compute the global sum information.