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 =========================================================================*/
38 #ifndef vtkGenericDataSetTessellator_h
39 #define vtkGenericDataSetTessellator_h
40 
41 #include "vtkFiltersGenericModule.h" // For export macro
43 
44 class vtkPointData;
46 
48 {
49 public:
51 
53  vtkTypeMacro(vtkGenericDataSetTessellator,
55  void PrintSelf(ostream& os, vtkIndent indent);
57 
59 
63  vtkSetMacro(KeepCellIds, int);
64  vtkGetMacro(KeepCellIds, int);
65  vtkBooleanMacro(KeepCellIds, int);
67 
68 
70 
73  vtkSetMacro(Merging,int);
74  vtkGetMacro(Merging,int);
75  vtkBooleanMacro(Merging,int);
77 
79 
81  void SetLocator(vtkIncrementalPointLocator *locator);
82  vtkGetObjectMacro(Locator,vtkIncrementalPointLocator);
84 
86  void CreateDefaultLocator();
87 
89  unsigned long GetMTime();
90 
91 protected:
94 
96 
98 
99  // See Set/Get KeepCellIds() for explanations.
101 
102  // Used internal by vtkGenericAdaptorCell::Tessellate()
104 
105  int Merging;
107 
108 private:
110  void operator=(const vtkGenericDataSetTessellator&); // Not implemented.
111 };
112 
113 #endif
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
represent and manipulate point attribute data
Definition: vtkPointData.h:36
Store vtkAlgorithm input/output information.
static vtkUnstructuredGridAlgorithm * New()
Abstract class in support of both point location and point insertion.
#define VTKFILTERSGENERIC_EXPORT
virtual int FillInputPortInformation(int port, vtkInformation *info)
virtual unsigned long GetMTime()
a simple class to control print indentation
Definition: vtkIndent.h:38
void PrintSelf(ostream &os, vtkIndent indent)
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