VTK  9.0.2
vtkGridSynchronizedTemplates3D.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGridSynchronizedTemplates3D.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 =========================================================================*/
30 #ifndef vtkGridSynchronizedTemplates3D_h
31 #define vtkGridSynchronizedTemplates3D_h
32 
33 #include "vtkContourValues.h" // Because it passes all the calls to it
34 #include "vtkFiltersCoreModule.h" // For export macro
35 #include "vtkPolyDataAlgorithm.h"
36 
37 class vtkStructuredGrid;
38 
39 class VTKFILTERSCORE_EXPORT vtkGridSynchronizedTemplates3D : public vtkPolyDataAlgorithm
40 {
41 public:
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
49  vtkMTimeType GetMTime() override;
50 
52 
58  vtkSetMacro(ComputeNormals, vtkTypeBool);
59  vtkGetMacro(ComputeNormals, vtkTypeBool);
60  vtkBooleanMacro(ComputeNormals, vtkTypeBool);
62 
64 
72  vtkSetMacro(ComputeGradients, vtkTypeBool);
73  vtkGetMacro(ComputeGradients, vtkTypeBool);
74  vtkBooleanMacro(ComputeGradients, vtkTypeBool);
76 
78 
81  vtkSetMacro(ComputeScalars, vtkTypeBool);
82  vtkGetMacro(ComputeScalars, vtkTypeBool);
83  vtkBooleanMacro(ComputeScalars, vtkTypeBool);
85 
87 
91  vtkSetMacro(GenerateTriangles, vtkTypeBool);
92  vtkGetMacro(GenerateTriangles, vtkTypeBool);
93  vtkBooleanMacro(GenerateTriangles, vtkTypeBool);
95 
100  void SetValue(int i, double value) { this->ContourValues->SetValue(i, value); }
101 
105  double GetValue(int i) { return this->ContourValues->GetValue(i); }
106 
111  double* GetValues() { return this->ContourValues->GetValues(); }
112 
118  void GetValues(double* contourValues) { this->ContourValues->GetValues(contourValues); }
119 
125  void SetNumberOfContours(int number) { this->ContourValues->SetNumberOfContours(number); }
126 
130  vtkIdType GetNumberOfContours() { return this->ContourValues->GetNumberOfContours(); }
131 
136  void GenerateValues(int numContours, double range[2])
137  {
138  this->ContourValues->GenerateValues(numContours, range);
139  }
140 
145  void GenerateValues(int numContours, double rangeStart, double rangeEnd)
146  {
147  this->ContourValues->GenerateValues(numContours, rangeStart, rangeEnd);
148  }
149 
154  vtkStructuredGrid* input, vtkInformationVector** inVec, vtkInformation* outInfo);
155 
160  void SetInputMemoryLimit(long limit);
161 
163 
168  vtkSetClampMacro(OutputPointsPrecision, int, SINGLE_PRECISION, DEFAULT_PRECISION);
169  vtkGetMacro(OutputPointsPrecision, int);
171 
172 protected:
175 
179 
184 
186 
187  int MinimumPieceSize[3];
189 
190 private:
192  void operator=(const vtkGridSynchronizedTemplates3D&) = delete;
193 };
194 
195 #endif
helper object to manage setting and generating contour values
generate isosurface from structured grids
void SetInputMemoryLimit(long limit)
This filter will initiate streaming so that no piece requested from the input will be larger than thi...
void GetValues(double *contourValues)
Fill a supplied list with contour values.
void GenerateValues(int numContours, double range[2])
Generate numContours equally spaced contour values between specified range.
vtkMTimeType GetMTime() override
Because we delegate to vtkContourValues.
void SetNumberOfContours(int number)
Set the number of contours to place into the list.
double * GetValues()
Get a pointer to an array of contour values.
void ThreadedExecute(vtkStructuredGrid *input, vtkInformationVector **inVec, vtkInformation *outInfo)
Main execution.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
~vtkGridSynchronizedTemplates3D() override
void GenerateValues(int numContours, double rangeStart, double rangeEnd)
Generate numContours equally spaced contour values between specified range.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkGridSynchronizedTemplates3D * New()
void SetValue(int i, double value)
Set a particular contour value at contour number i.
vtkIdType GetNumberOfContours()
Get the number of contours in the list of contour values.
double GetValue(int i)
Get the ith contour value.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
topologically regular array of data
@ 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
int vtkIdType
Definition: vtkType.h:338
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:293