VTK  9.0.1
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 =========================================================================*/
36 #ifndef vtkGenericDataSetTessellator_h
37 #define vtkGenericDataSetTessellator_h
38 
39 #include "vtkFiltersGenericModule.h" // For export macro
41 
42 class vtkPointData;
44 
45 class VTKFILTERSGENERIC_EXPORT vtkGenericDataSetTessellator : public vtkUnstructuredGridAlgorithm
46 {
47 public:
49 
54  void PrintSelf(ostream& os, vtkIndent indent) override;
56 
58 
64  vtkSetMacro(KeepCellIds, vtkTypeBool);
65  vtkGetMacro(KeepCellIds, vtkTypeBool);
66  vtkBooleanMacro(KeepCellIds, vtkTypeBool);
68 
70 
75  vtkSetMacro(Merging, vtkTypeBool);
76  vtkGetMacro(Merging, vtkTypeBool);
77  vtkBooleanMacro(Merging, vtkTypeBool);
79 
81 
85  void SetLocator(vtkIncrementalPointLocator* locator);
86  vtkGetObjectMacro(Locator, vtkIncrementalPointLocator);
88 
92  void CreateDefaultLocator();
93 
97  vtkMTimeType GetMTime() override;
98 
99 protected:
101  ~vtkGenericDataSetTessellator() override;
102 
104 
105  int FillInputPortInformation(int, vtkInformation*) override;
106 
107  // See Set/Get KeepCellIds() for explanations.
109 
110  // Used internal by vtkGenericAdaptorCell::Tessellate()
112 
115 
116 private:
118  void operator=(const vtkGenericDataSetTessellator&) = delete;
119 };
120 
121 #endif
vtkPointData
represent and manipulate point attribute data
Definition: vtkPointData.h:31
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkGenericDataSetTessellator
tessellates generic, higher-order datasets into linear cells
Definition: vtkGenericDataSetTessellator.h:45
vtkGenericDataSetTessellator::KeepCellIds
vtkTypeBool KeepCellIds
Definition: vtkGenericDataSetTessellator.h:108
vtkObject::GetMTime
virtual vtkMTimeType GetMTime()
Return this object's modified time.
vtkUnstructuredGridAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkGenericDataSetTessellator::InternalPD
vtkPointData * InternalPD
Definition: vtkGenericDataSetTessellator.h:111
vtkIncrementalPointLocator
Abstract class in support of both point location and point insertion.
Definition: vtkIncrementalPointLocator.h:51
vtkUnstructuredGridAlgorithm::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkGenericDataSetTessellator::Locator
vtkIncrementalPointLocator * Locator
Definition: vtkGenericDataSetTessellator.h:114
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:73
vtkGenericDataSetTessellator::Merging
vtkTypeBool Merging
Definition: vtkGenericDataSetTessellator.h:113
vtkUnstructuredGridAlgorithm::New
static vtkUnstructuredGridAlgorithm * New()
vtkUnstructuredGridAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkUnstructuredGridAlgorithm.h
vtkUnstructuredGridAlgorithm
Superclass for algorithms that produce only unstructured grid as output.
Definition: vtkUnstructuredGridAlgorithm.h:40
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkMTimeType
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:293