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
70class VTKFILTERSGEOMETRY_EXPORT vtkMarkBoundaryFilter : public vtkDataSetAlgorithm
71{
72public:
74
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
108protected:
111
114 int FillInputPortInformation(int port, vtkInformation* info) override;
115
117
121
122private:
124 void operator=(const vtkMarkBoundaryFilter&) = delete;
125};
126
127#endif
Superclass for algorithms that produce output of the same type as input.
a simple class to control print indentation
Definition: vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
mark points and cells that lie on the boundary of a dataset
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when each filter in the pipeline decides what portion of its inp...
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
~vtkMarkBoundaryFilter() override
static vtkMarkBoundaryFilter * New()
Standard methods for instantiation, type information, and printing.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, type information, and printing.