VTK  9.0.1
vtkPlaneCutter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPlaneCutter.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 =========================================================================*/
62 #ifndef vtkPlaneCutter_h
63 #define vtkPlaneCutter_h
64 
65 #include "vtkDataSetAlgorithm.h"
66 #include "vtkFiltersCoreModule.h" // For export macro
67 #include "vtkSmartPointer.h" // For SmartPointer
68 #include <vector> // For vector
69 
70 class vtkCellArray;
71 class vtkCellData;
72 class vtkImageData;
74 class vtkPlane;
75 class vtkPointData;
76 class vtkPoints;
77 class vtkSphereTree;
78 class vtkStructuredGrid;
80 
81 class VTKFILTERSCORE_EXPORT vtkPlaneCutter : public vtkDataSetAlgorithm
82 {
83 public:
85 
88  static vtkPlaneCutter* New();
90  void PrintSelf(ostream& os, vtkIndent indent) override;
92 
96  vtkMTimeType GetMTime() override;
97 
99 
104  virtual void SetPlane(vtkPlane*);
105  vtkGetObjectMacro(Plane, vtkPlane);
107 
109 
115  vtkSetMacro(ComputeNormals, bool);
116  vtkGetMacro(ComputeNormals, bool);
117  vtkBooleanMacro(ComputeNormals, bool);
119 
121 
126  vtkSetMacro(InterpolateAttributes, bool);
127  vtkGetMacro(InterpolateAttributes, bool);
128  vtkBooleanMacro(InterpolateAttributes, bool);
130 
132 
137  vtkSetMacro(GeneratePolygons, bool);
138  vtkGetMacro(GeneratePolygons, bool);
139  vtkBooleanMacro(GeneratePolygons, bool);
141 
143 
149  vtkSetMacro(BuildTree, bool);
150  vtkGetMacro(BuildTree, bool);
151  vtkBooleanMacro(BuildTree, bool);
153 
155 
161  vtkSetMacro(BuildHierarchy, bool);
162  vtkGetMacro(BuildHierarchy, bool);
163  vtkBooleanMacro(BuildHierarchy, bool);
165 
171 
172 protected:
173  vtkPlaneCutter();
174  ~vtkPlaneCutter() override;
175 
180  bool BuildTree;
182 
183  // Helpers
184  std::vector<vtkSmartPointer<vtkSphereTree> > SphereTrees;
185 
186  // Pipeline-related methods
190  int FillInputPortInformation(int port, vtkInformation* info) override;
192 
193  virtual int ExecuteDataSet(vtkDataSet* input, vtkSphereTree* tree, vtkMultiPieceDataSet* output);
194 
195  static void AddNormalArray(double* planeNormal, vtkDataSet* ds);
196  static void InitializeOutput(vtkMultiPieceDataSet* output);
197 
198 private:
199  vtkPlaneCutter(const vtkPlaneCutter&) = delete;
200  void operator=(const vtkPlaneCutter&) = delete;
201 };
202 
203 #endif
represent and manipulate point attribute data
Definition: vtkPointData.h:31
Store vtkAlgorithm input/output information.
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:293
abstract class to specify dataset behavior
Definition: vtkDataSet.h:56
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
represent and manipulate cell attribute data
Definition: vtkCellData.h:32
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:33
cut any dataset with a plane and generate a polygonal cut surface
topologically and geometrically regular array of data
Definition: vtkImageData.h:41
composite dataset to encapsulates pieces of dataset.
dataset represents arbitrary combinations of all possible cell types
virtual vtkMTimeType GetMTime()
Return this object&#39;s modified time.
perform various plane computations
Definition: vtkPlane.h:31
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
bool InterpolateAttributes
object to represent cell connectivity
Definition: vtkCellArray.h:179
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
topologically regular array of data
class to build and traverse sphere trees
Definition: vtkSphereTree.h:69
Store zero or more vtkInformation instances.
Superclass for algorithms that produce output of the same type as input.
virtual int RequestDataObject(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called within ProcessRequest to when a request asks the algorithm to create empty output data...
std::vector< vtkSmartPointer< vtkSphereTree > > SphereTrees
static vtkDataSetAlgorithm * New()
represent and manipulate 3D points
Definition: vtkPoints.h:33
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkTypeBool ProcessRequest(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
see vtkAlgorithm for details
vtkPlane * Plane