VTK  9.5.2
vtkBinCellDataFilter.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
20
21#ifndef vtkBinCellDataFilter_h
22#define vtkBinCellDataFilter_h
23
24#include "vtkDataSetAlgorithm.h"
25#include "vtkDataSetAttributes.h" // needed for vtkDataSetAttributes::FieldList
26#include "vtkFiltersCoreModule.h" // For export macro
27
28#include "vtkContourValues.h" // Needed for inline methods
29
30VTK_ABI_NAMESPACE_BEGIN
32
33class VTKFILTERSCORE_EXPORT vtkBinCellDataFilter : public vtkDataSetAlgorithm
34{
35public:
37
43
45
49 void PrintSelf(ostream& os, vtkIndent indent) override;
51
53
56 void SetValue(int i, double value);
57 double GetValue(int i);
58 double* GetValues();
59 void GetValues(double* binValues);
60 void SetNumberOfBins(int numBins);
62 void GenerateValues(int numBins, double range[2]);
63 void GenerateValues(int numBins, double rangeStart, double rangeEnd);
65
67
76
84
86
98 vtkBooleanMacro(SpatialMatch, vtkTypeBool);
100
102
106 vtkSetMacro(StoreNumberOfNonzeroBins, bool);
107 vtkBooleanMacro(StoreNumberOfNonzeroBins, bool);
108 vtkGetMacro(StoreNumberOfNonzeroBins, bool);
110
112
120
122
127 vtkSetMacro(Tolerance, double);
128 vtkGetMacro(Tolerance, double);
130
132
137 vtkSetMacro(ComputeTolerance, bool);
138 vtkBooleanMacro(ComputeTolerance, bool);
139 vtkGetMacro(ComputeTolerance, bool);
141
143
146 vtkSetMacro(ArrayComponent, int);
147 vtkGetMacro(ArrayComponent, int);
149
155
157
163 vtkGetMacro(CellOverlapMethod, int);
165
167
171 virtual void SetCellLocator(vtkAbstractCellLocator* cellLocator);
174
175protected:
178
180
182 double Tolerance;
186
189 virtual void CreateDefaultLocator();
190
194
196
197private:
199 void operator=(const vtkBinCellDataFilter&) = delete;
200};
201
206inline void vtkBinCellDataFilter::SetValue(int i, double value)
207{
208 this->BinValues->SetValue(i, value);
209}
210
215{
216 return this->BinValues->GetValue(i);
217}
218
224{
225 return this->BinValues->GetValues();
226}
227
233inline void vtkBinCellDataFilter::GetValues(double* binValues)
234{
235 this->BinValues->GetValues(binValues);
236}
237
244{
245 this->BinValues->SetNumberOfContours(number);
246}
247
253{
254 return this->BinValues->GetNumberOfContours();
255}
256
261inline void vtkBinCellDataFilter::GenerateValues(int numBins, double range[2])
262{
263 this->BinValues->GenerateValues(numBins, range);
264}
265
270inline void vtkBinCellDataFilter::GenerateValues(int numBins, double rangeStart, double rangeEnd)
271{
272 this->BinValues->GenerateValues(numBins, rangeStart, rangeEnd);
273}
274
275VTK_ABI_NAMESPACE_END
276#endif
an abstract base class for locators which find cells
Proxy object to connect input/output ports.
~vtkBinCellDataFilter() override
vtkDataObject * GetSource()
Specify the data set whose cells will be counted.
virtual void SetCellLocator(vtkAbstractCellLocator *cellLocator)
Set/Get a spatial locator for speeding the search process.
void SetSourceData(vtkDataObject *source)
Specify the data set whose cells will be counted.
void SetValue(int i, double value)
Methods to set / get bin values.
vtkAbstractCellLocator * CellLocator
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
vtkContourValues vtkBinValues
static vtkBinCellDataFilter * New()
Construct object with initial range (VTK_DOUBLE_MIN, VTK_DOUBLE_MAX) and a single bin.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for type and printing.
void SetSourceConnection(vtkAlgorithmOutput *algOutput)
Specify the data set whose cells will be counted.
double GetValue(int i)
Get the ith bin value.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
void SetNumberOfBins(int numBins)
Set the number of bins to place into the list.
virtual void CreateDefaultLocator()
vtkIdType GetNumberOfBins()
Get the number of bins in the list of bin values, not counting the overflow bin.
int RequestInformation(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks for Information.
double * GetValues()
Get a pointer to an array of bin values.
void GenerateValues(int numBins, double range[2])
Generate numBins equally spaced bin values between specified range.
helper object to manage setting and generating contour values
general representation of visualization data
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
int vtkTypeBool
Definition vtkABI.h:64
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
int vtkIdType
Definition vtkType.h:332