VTK
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 
53  vtkTypeMacro(vtkGenericDataSetTessellator,
55  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
57 
59 
65  vtkSetMacro(KeepCellIds, int);
66  vtkGetMacro(KeepCellIds, int);
67  vtkBooleanMacro(KeepCellIds, int);
69 
70 
72 
77  vtkSetMacro(Merging,int);
78  vtkGetMacro(Merging,int);
79  vtkBooleanMacro(Merging,int);
81 
83 
87  void SetLocator(vtkIncrementalPointLocator *locator);
88  vtkGetObjectMacro(Locator,vtkIncrementalPointLocator);
90 
94  void CreateDefaultLocator();
95 
99  vtkMTimeType GetMTime() VTK_OVERRIDE;
100 
101 protected:
103  ~vtkGenericDataSetTessellator() VTK_OVERRIDE;
104 
105  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;
106 
107  int FillInputPortInformation(int, vtkInformation*) VTK_OVERRIDE;
108 
109  // See Set/Get KeepCellIds() for explanations.
110  int KeepCellIds;
111 
112  // Used internal by vtkGenericAdaptorCell::Tessellate()
113  vtkPointData *InternalPD;
114 
115  int Merging;
117 
118 private:
120  void operator=(const vtkGenericDataSetTessellator&) VTK_DELETE_FUNCTION;
121 };
122 
123 #endif
represent and manipulate point attribute data
Definition: vtkPointData.h:31
Store vtkAlgorithm input/output information.
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:300
static vtkUnstructuredGridAlgorithm * New()
Abstract class in support of both point location and point insertion.
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:33
virtual vtkMTimeType GetMTime()
Return this object's modified time.
Superclass for algorithms that produce only unstructured grid as output.
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
Store zero or more vtkInformation instances.
tessellates generic, higher-order datasets into linear cells
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.