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
vtkPoints
represent and manipulate 3D points
Definition: vtkPoints.h:33
vtkPlane
perform various plane computations
Definition: vtkPlane.h:31
vtkPlaneCutter::Plane
vtkPlane * Plane
Definition: vtkPlaneCutter.h:176
vtkPlaneCutter::BuildHierarchy
bool BuildHierarchy
Definition: vtkPlaneCutter.h:181
vtkMultiPieceDataSet
composite dataset to encapsulates pieces of dataset.
Definition: vtkMultiPieceDataSet.h:40
vtkPointData
represent and manipulate point attribute data
Definition: vtkPointData.h:31
vtkPlaneCutter::BuildTree
bool BuildTree
Definition: vtkPlaneCutter.h:180
vtkPlaneCutter::ComputeNormals
bool ComputeNormals
Definition: vtkPlaneCutter.h:177
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkPlaneCutter::SphereTrees
std::vector< vtkSmartPointer< vtkSphereTree > > SphereTrees
Definition: vtkPlaneCutter.h:184
vtkStructuredGrid
topologically regular array of data
Definition: vtkStructuredGrid.h:57
vtkDataSetAlgorithm::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
Definition: vtkDataSetAlgorithm.h:176
vtkDataSetAlgorithm::RequestDataObject
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...
vtkDataSetAlgorithm
Superclass for algorithms that produce output of the same type as input.
Definition: vtkDataSetAlgorithm.h:48
vtkPlaneCutter::InterpolateAttributes
bool InterpolateAttributes
Definition: vtkPlaneCutter.h:178
vtkX3D::port
@ port
Definition: vtkX3D.h:453
vtkDataSetAlgorithm::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkObject::GetMTime
virtual vtkMTimeType GetMTime()
Return this object's modified time.
vtkCellData
represent and manipulate cell attribute data
Definition: vtkCellData.h:32
vtkImageData
topologically and geometrically regular array of data
Definition: vtkImageData.h:41
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkCellArray
object to represent cell connectivity
Definition: vtkCellArray.h:179
vtkDataSetAlgorithm::New
static vtkDataSetAlgorithm * New()
vtkSmartPointer.h
vtkDataSetAlgorithm::FillOutputPortInformation
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
vtkDataSet
abstract class to specify dataset behavior
Definition: vtkDataSet.h:56
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:73
vtkSphereTree
class to build and traverse sphere trees
Definition: vtkSphereTree.h:69
vtkX3D::info
@ info
Definition: vtkX3D.h:382
vtkDataSetAlgorithm.h
vtkDataSetAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkPlaneCutter::GeneratePolygons
bool GeneratePolygons
Definition: vtkPlaneCutter.h:179
vtkDataSetAlgorithm::RequestUpdateExtent
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
Definition: vtkDataSetAlgorithm.h:152
vtkUnstructuredGrid
dataset represents arbitrary combinations of all possible cell types
Definition: vtkUnstructuredGrid.h:92
vtkDataSetAlgorithm::ProcessRequest
vtkTypeBool ProcessRequest(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
see vtkAlgorithm for details
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkPlaneCutter
cut any dataset with a plane and generate a polygonal cut surface
Definition: vtkPlaneCutter.h:81
vtkMTimeType
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:293