VTK  9.2.6
vtkMarkBoundaryFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkMarkBoundaryFilter.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 =========================================================================*/
64 #ifndef vtkMarkBoundaryFilter_h
65 #define vtkMarkBoundaryFilter_h
66 
67 #include "vtkDataSetAlgorithm.h"
68 #include "vtkFiltersGeometryModule.h" // For export macro
69 
70 class VTKFILTERSGEOMETRY_EXPORT vtkMarkBoundaryFilter : public vtkDataSetAlgorithm
71 {
72 public:
74 
77  static vtkMarkBoundaryFilter* New();
79  void PrintSelf(ostream& os, vtkIndent indent) override;
81 
83 
89  vtkSetMacro(GenerateBoundaryFaces, bool);
90  vtkGetMacro(GenerateBoundaryFaces, bool);
91  vtkBooleanMacro(GenerateBoundaryFaces, bool);
93 
95 
100  vtkSetStringMacro(BoundaryPointsName);
101  vtkGetStringMacro(BoundaryPointsName);
102  vtkSetStringMacro(BoundaryCellsName);
103  vtkGetStringMacro(BoundaryCellsName);
104  vtkSetStringMacro(BoundaryFacesName);
105  vtkGetStringMacro(BoundaryFacesName);
107 
108 protected:
110  ~vtkMarkBoundaryFilter() override;
111 
114  int FillInputPortInformation(int port, vtkInformation* info) override;
115 
117 
121 
122 private:
124  void operator=(const vtkMarkBoundaryFilter&) = delete;
125 };
126 
127 #endif
Store vtkAlgorithm input/output information.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
mark points and cells that lie on the boundary of a dataset
a simple class to control print indentation
Definition: vtkIndent.h:39
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when a request asks the algorithm to do its work.
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
Store zero or more vtkInformation instances.
Superclass for algorithms that produce output of the same type as input.
static vtkDataSetAlgorithm * New()
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.