VTK
vtkGenericClip.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGenericClip.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 =========================================================================*/
63 #ifndef vtkGenericClip_h
64 #define vtkGenericClip_h
65 
66 #include "vtkFiltersGenericModule.h" // For export macro
68 
70 
71 class vtkPointData;
72 class vtkCellData;
74 
76 {
77 public:
79  void PrintSelf(ostream& os, vtkIndent indent);
80 
83  static vtkGenericClip *New();
84 
86 
89  vtkSetMacro(Value,double);
90  vtkGetMacro(Value,double);
92 
94 
99  vtkSetMacro(InsideOut,int);
100  vtkGetMacro(InsideOut,int);
101  vtkBooleanMacro(InsideOut,int);
103 
105 
108  virtual void SetClipFunction(vtkImplicitFunction*);
109  vtkGetObjectMacro(ClipFunction,vtkImplicitFunction);
111 
113 
117  vtkSetMacro(GenerateClipScalars,int);
118  vtkGetMacro(GenerateClipScalars,int);
119  vtkBooleanMacro(GenerateClipScalars,int);
121 
123 
125  vtkSetMacro(GenerateClippedOutput,int);
126  vtkGetMacro(GenerateClippedOutput,int);
127  vtkBooleanMacro(GenerateClippedOutput,int);
129 
131 
135  vtkSetClampMacro(MergeTolerance,double,0.0001,0.25);
136  vtkGetMacro(MergeTolerance,double);
138 
140 
141  vtkUnstructuredGrid *GetClippedOutput();
142  virtual int GetNumberOfOutputs();
144 
146 
148  void SetLocator(vtkIncrementalPointLocator *locator);
149  vtkGetObjectMacro(Locator,vtkIncrementalPointLocator);
151 
154  void CreateDefaultLocator();
155 
157  unsigned long GetMTime();
158 
160 
162  vtkGetStringMacro(InputScalarsSelection);
163  void SelectInputScalars(const char *fieldName)
164  {this->SetInputScalarsSelection(fieldName);}
166 
167 protected:
169  ~vtkGenericClip();
170 
173 
175 
178  double Value;
180 
183 
185  vtkSetStringMacro(InputScalarsSelection);
186 
187  // Used internal by vtkGenericAdaptorCell::Clip()
191 
192 private:
193  vtkGenericClip(const vtkGenericClip&); // Not implemented.
194  void operator=(const vtkGenericClip&); // Not implemented.
195 };
196 
197 #endif
abstract interface for implicit functions
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
represent and manipulate point attribute data
Definition: vtkPointData.h:36
Store vtkAlgorithm input/output information.
clip any dataset with an implicit function or scalar data
vtkIncrementalPointLocator * Locator
represent and manipulate cell attribute data
Definition: vtkCellData.h:37
static vtkUnstructuredGridAlgorithm * New()
Abstract class in support of both point location and point insertion.
#define VTKFILTERSGENERIC_EXPORT
virtual int FillInputPortInformation(int port, vtkInformation *info)
void SelectInputScalars(const char *fieldName)
vtkPointData * SecondaryPD
char * InputScalarsSelection
virtual unsigned long GetMTime()
a simple class to control print indentation
Definition: vtkIndent.h:38
dataset represents arbitrary combinations of all possible cell types
void PrintSelf(ostream &os, vtkIndent indent)
vtkCellData * SecondaryCD
Superclass for algorithms that produce only unstructured grid as output.
vtkPointData * InternalPD
vtkImplicitFunction * ClipFunction
Store zero or more vtkInformation instances.