VTK  9.2.6
vtkGenericDataSetTessellator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGenericDataSetTessellator.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 =========================================================================*/
39 #ifndef vtkGenericDataSetTessellator_h
40 #define vtkGenericDataSetTessellator_h
41 
42 #include "vtkFiltersGenericModule.h" // For export macro
44 
45 class vtkPointData;
47 
48 class VTKFILTERSGENERIC_EXPORT vtkGenericDataSetTessellator : public vtkUnstructuredGridAlgorithm
49 {
50 public:
52 
57  void PrintSelf(ostream& os, vtkIndent indent) override;
59 
61 
67  vtkSetMacro(KeepCellIds, vtkTypeBool);
68  vtkGetMacro(KeepCellIds, vtkTypeBool);
69  vtkBooleanMacro(KeepCellIds, vtkTypeBool);
71 
73 
78  vtkSetMacro(Merging, vtkTypeBool);
79  vtkGetMacro(Merging, vtkTypeBool);
80  vtkBooleanMacro(Merging, vtkTypeBool);
82 
84 
88  void SetLocator(vtkIncrementalPointLocator* locator);
89  vtkGetObjectMacro(Locator, vtkIncrementalPointLocator);
91 
95  void CreateDefaultLocator();
96 
100  vtkMTimeType GetMTime() override;
101 
102 protected:
104  ~vtkGenericDataSetTessellator() override;
105 
107 
108  int FillInputPortInformation(int, vtkInformation*) override;
109 
110  // See Set/Get KeepCellIds() for explanations.
112 
113  // Used internal by vtkGenericAdaptorCell::Tessellate()
115 
118 
119 private:
121  void operator=(const vtkGenericDataSetTessellator&) = delete;
122 };
123 
124 #endif
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
represent and manipulate point attribute data
Definition: vtkPointData.h:41
Store vtkAlgorithm input/output information.
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:287
static vtkUnstructuredGridAlgorithm * New()
Abstract class in support of both point location and point insertion.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int vtkTypeBool
Definition: vtkABI.h:69
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:39
virtual vtkMTimeType GetMTime()
Return this object's modified time.
Superclass for algorithms that produce only unstructured grid as output.
Store zero or more vtkInformation instances.
tessellates generic, higher-order datasets into linear cells
vtkIncrementalPointLocator * Locator