VTK  9.1.0
vtkSampleImplicitFunctionFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSampleImplicitFunctionFilter.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 =========================================================================*/
54 #ifndef vtkSampleImplicitFunctionFilter_h
55 #define vtkSampleImplicitFunctionFilter_h
56 
57 #include "vtkDataSetAlgorithm.h"
58 #include "vtkFiltersGeneralModule.h" // For export macro
59 
61 class vtkDataArray;
62 
63 class VTKFILTERSGENERAL_EXPORT vtkSampleImplicitFunctionFilter : public vtkDataSetAlgorithm
64 {
65 public:
67 
72  void PrintSelf(ostream& os, vtkIndent indent) override;
74 
76 
80  vtkGetObjectMacro(ImplicitFunction, vtkImplicitFunction);
82 
84 
87  vtkSetMacro(ComputeGradients, vtkTypeBool);
88  vtkGetMacro(ComputeGradients, vtkTypeBool);
89  vtkBooleanMacro(ComputeGradients, vtkTypeBool);
91 
93 
97  vtkSetStringMacro(ScalarArrayName);
98  vtkGetStringMacro(ScalarArrayName);
100 
102 
106  vtkSetStringMacro(GradientArrayName);
107  vtkGetStringMacro(GradientArrayName);
109 
113  vtkMTimeType GetMTime() override;
114 
115 protected:
118 
123 
125 
128 
129 private:
131  void operator=(const vtkSampleImplicitFunctionFilter&) = delete;
132 };
133 
134 #endif
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:159
Superclass for algorithms that produce output of the same type as input.
Detect and break reference loops.
abstract interface for implicit functions
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
sample an implicit function over a dataset, generating scalar values and optional gradient vectors
virtual void SetImplicitFunction(vtkImplicitFunction *)
Specify the implicit function to use to generate data.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
static vtkSampleImplicitFunctionFilter * New()
Standard instantiation, type information, and print methods.
void ReportReferences(vtkGarbageCollector *) override
vtkMTimeType GetMTime() override
Return the MTime also taking into account the implicit function.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard instantiation, type information, and print methods.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453
int vtkTypeBool
Definition: vtkABI.h:69
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287