VTK  9.1.0
vtkCutter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkCutter.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 vtkCutter_h
55#define vtkCutter_h
56
57#include "vtkFiltersCoreModule.h" // For export macro
59
60#include "vtkContourValues.h" // Needed for inline methods
61
62#define VTK_SORT_BY_VALUE 0
63#define VTK_SORT_BY_CELL 1
64
71
72class VTKFILTERSCORE_EXPORT vtkCutter : public vtkPolyDataAlgorithm
73{
74public:
76 void PrintSelf(ostream& os, vtkIndent indent) override;
77
82 static vtkCutter* New();
83
88 void SetValue(int i, double value) { this->ContourValues->SetValue(i, value); }
89
93 double GetValue(int i) { return this->ContourValues->GetValue(i); }
94
99 double* GetValues() { return this->ContourValues->GetValues(); }
100
106 void GetValues(double* contourValues) { this->ContourValues->GetValues(contourValues); }
107
113 void SetNumberOfContours(int number) { this->ContourValues->SetNumberOfContours(number); }
114
118 vtkIdType GetNumberOfContours() { return this->ContourValues->GetNumberOfContours(); }
119
124 void GenerateValues(int numContours, double range[2])
125 {
126 this->ContourValues->GenerateValues(numContours, range);
127 }
128
133 void GenerateValues(int numContours, double rangeStart, double rangeEnd)
134 {
135 this->ContourValues->GenerateValues(numContours, rangeStart, rangeEnd);
136 }
137
143
145
149 vtkGetObjectMacro(CutFunction, vtkImplicitFunction);
151
153
158 vtkSetMacro(GenerateCutScalars, vtkTypeBool);
159 vtkGetMacro(GenerateCutScalars, vtkTypeBool);
160 vtkBooleanMacro(GenerateCutScalars, vtkTypeBool);
162
164
171 vtkSetMacro(GenerateTriangles, vtkTypeBool);
172 vtkGetMacro(GenerateTriangles, vtkTypeBool);
173 vtkBooleanMacro(GenerateTriangles, vtkTypeBool);
175
177
182 vtkGetObjectMacro(Locator, vtkIncrementalPointLocator);
184
186
201 vtkSetClampMacro(SortBy, int, VTK_SORT_BY_VALUE, VTK_SORT_BY_CELL);
202 vtkGetMacro(SortBy, int);
203 void SetSortByToSortByValue() { this->SetSortBy(VTK_SORT_BY_VALUE); }
204 void SetSortByToSortByCell() { this->SetSortBy(VTK_SORT_BY_CELL); }
205 const char* GetSortByAsString();
207
213
219 static void GetCellTypeDimensions(unsigned char* cellTypeDimensions);
220
222
227 vtkSetClampMacro(OutputPointsPrecision, int, SINGLE_PRECISION, DEFAULT_PRECISION);
228 vtkGetMacro(OutputPointsPrecision, int);
230
231protected:
233 ~vtkCutter() override;
234
239 void DataSetCutter(vtkDataSet* input, vtkPolyData* output);
246
251
257
258private:
259 vtkCutter(const vtkCutter&) = delete;
260 void operator=(const vtkCutter&) = delete;
261};
262
267{
268 if (this->SortBy == VTK_SORT_BY_VALUE)
269 {
270 return "SortByValue";
271 }
272 else
273 {
274 return "SortByCell";
275 }
276}
277
278#endif
helper object to manage setting and generating contour values
Cut vtkDataSet with user-specified implicit function.
Definition: vtkCutter.h:73
void StructuredGridCutter(vtkDataSet *, vtkPolyData *)
const char * GetSortByAsString()
Return the sorting procedure as a descriptive character string.
Definition: vtkCutter.h:266
vtkContourValues * ContourValues
Definition: vtkCutter.h:254
void DataSetCutter(vtkDataSet *input, vtkPolyData *output)
virtual void SetCutFunction(vtkImplicitFunction *)
Specify the implicit function to perform the cutting.
void SetLocator(vtkIncrementalPointLocator *locator)
Specify a spatial locator for merging points.
void GetValues(double *contourValues)
Fill a supplied list with contour values.
Definition: vtkCutter.h:106
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void CreateDefaultLocator()
Create default locator.
vtkSynchronizedTemplates3D * SynchronizedTemplates3D
Definition: vtkCutter.h:247
vtkIdType GetNumberOfContours()
Get the number of contours in the list of contour values.
Definition: vtkCutter.h:118
vtkSynchronizedTemplatesCutter3D * SynchronizedTemplatesCutter3D
Definition: vtkCutter.h:248
static vtkCutter * New()
Construct with user-specified implicit function; initial value of 0.0; and generating cut scalars tur...
void SetNumberOfContours(int number)
Set the number of contours to place into the list.
Definition: vtkCutter.h:113
double * GetValues()
Get a pointer to an array of contour values.
Definition: vtkCutter.h:99
vtkMTimeType GetMTime() override
Override GetMTime because we delegate to vtkContourValues and refer to vtkImplicitFunction.
vtkCutter(vtkImplicitFunction *cf=nullptr)
void GenerateValues(int numContours, double range[2])
Generate numContours equally spaced contour values between specified range.
Definition: vtkCutter.h:124
int SortBy
Definition: vtkCutter.h:253
vtkGridSynchronizedTemplates3D * GridSynchronizedTemplates
Definition: vtkCutter.h:249
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkIncrementalPointLocator * Locator
Definition: vtkCutter.h:252
vtkImplicitFunction * CutFunction
Definition: vtkCutter.h:244
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void SetSortByToSortByCell()
Set the sorting order for the generated polydata.
Definition: vtkCutter.h:204
vtkTypeBool GenerateCutScalars
Definition: vtkCutter.h:255
void StructuredPointsCutter(vtkDataSet *, vtkPolyData *, vtkInformation *, vtkInformationVector **, vtkInformationVector *)
~vtkCutter() override
void SetValue(int i, double value)
Set a particular contour value at contour number i.
Definition: vtkCutter.h:88
vtkTypeBool GenerateTriangles
Definition: vtkCutter.h:245
void UnstructuredGridCutter(vtkDataSet *input, vtkPolyData *output)
int OutputPointsPrecision
Definition: vtkCutter.h:256
void SetSortByToSortByValue()
Set the sorting order for the generated polydata.
Definition: vtkCutter.h:203
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void GenerateValues(int numContours, double rangeStart, double rangeEnd)
Generate numContours equally spaced contour values between specified range.
Definition: vtkCutter.h:133
void RectilinearGridCutter(vtkDataSet *, vtkPolyData *)
static void GetCellTypeDimensions(unsigned char *cellTypeDimensions)
Normally I would put this in a different class, but since This is a temporary fix until we convert th...
double GetValue(int i)
Get the ith contour value.
Definition: vtkCutter.h:93
vtkRectilinearSynchronizedTemplates * RectilinearSynchronizedTemplates
Definition: vtkCutter.h:250
abstract class to specify dataset behavior
Definition: vtkDataSet.h:66
generate isosurface from structured grids
abstract interface for implicit functions
Abstract class in support of both point location and point insertion.
a simple class to control print indentation
Definition: vtkIndent.h:43
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition: vtkPolyData.h:95
generate isosurface from rectilinear grid
generate isosurface from structured points
generate cut surface from structured points
@ info
Definition: vtkX3D.h:382
@ value
Definition: vtkX3D.h:226
@ port
Definition: vtkX3D.h:453
@ range
Definition: vtkX3D.h:244
int vtkTypeBool
Definition: vtkABI.h:69
#define VTK_SORT_BY_VALUE
Definition: vtkCutter.h:62
#define VTK_SORT_BY_CELL
Definition: vtkCutter.h:63
int vtkIdType
Definition: vtkType.h:332
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287