VTK  9.3.0
vtkAreaContourSpectrumFilter.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
35 #ifndef vtkAreaContourSpectrumFilter_h
36 #define vtkAreaContourSpectrumFilter_h
37 
38 #include "vtkDataObjectAlgorithm.h"
39 #include "vtkFiltersGeneralModule.h" // For export macro
40 
41 VTK_ABI_NAMESPACE_BEGIN
42 class vtkTable;
43 
44 class VTKFILTERSGENERAL_EXPORT vtkAreaContourSpectrumFilter : public vtkDataObjectAlgorithm
45 {
46 public:
49  void PrintSelf(ostream& os, vtkIndent indent) override;
50 
52 
56  vtkSetMacro(ArcId, vtkIdType);
57  vtkGetMacro(ArcId, vtkIdType);
59 
61 
65  vtkSetMacro(NumberOfSamples, int);
66  vtkGetMacro(NumberOfSamples, int);
68 
70 
74  vtkSetMacro(FieldId, vtkIdType);
75  vtkGetMacro(FieldId, vtkIdType);
77 
79 
80 protected:
83 
84  vtkIdType ArcId, FieldId;
86 
87  int FillInputPortInformation(int portNumber, vtkInformation*) override;
88  int FillOutputPortInformation(int portNumber, vtkInformation* info) override;
89 
90  int RequestData(vtkInformation* request, vtkInformationVector** inputVector,
91  vtkInformationVector* outputVector) override;
92 
93 private:
95  void operator=(const vtkAreaContourSpectrumFilter&) = delete;
96 };
97 
98 VTK_ABI_NAMESPACE_END
99 #endif
compute an approximation of the area contour signature (evolution of the area of the input surface al...
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
int FillInputPortInformation(int portNumber, vtkInformation *) override
Fill the input port information objects for this algorithm.
~vtkAreaContourSpectrumFilter() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int FillOutputPortInformation(int portNumber, vtkInformation *info) override
Fill the output port information objects for this algorithm.
static vtkAreaContourSpectrumFilter * New()
Superclass for algorithms that produce only data object as output.
a simple class to control print indentation
Definition: vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:59
@ info
Definition: vtkX3D.h:376
int vtkIdType
Definition: vtkType.h:315