VTK  9.1.0
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=========================================================================*/
61#ifndef vtkMarkBoundaryFilter_h
62#define vtkMarkBoundaryFilter_h
63
64#include "vtkDataSetAlgorithm.h"
65#include "vtkFiltersGeometryModule.h" // For export macro
66
67class VTKFILTERSGEOMETRY_EXPORT vtkMarkBoundaryFilter : public vtkDataSetAlgorithm
68{
69public:
71
76 void PrintSelf(ostream& os, vtkIndent indent) override;
78
80
86 vtkSetMacro(GenerateBoundaryFaces, bool);
87 vtkGetMacro(GenerateBoundaryFaces, bool);
88 vtkBooleanMacro(GenerateBoundaryFaces, bool);
90
92
97 vtkSetStringMacro(BoundaryPointsName);
98 vtkGetStringMacro(BoundaryPointsName);
99 vtkSetStringMacro(BoundaryCellsName);
100 vtkGetStringMacro(BoundaryCellsName);
101 vtkSetStringMacro(BoundaryFacesName);
102 vtkGetStringMacro(BoundaryFacesName);
104
105protected:
108
112
114
118
119private:
121 void operator=(const vtkMarkBoundaryFilter&) = delete;
122};
123
124#endif
Superclass for algorithms that produce output of the same type as input.
a simple class to control print indentation
Definition: vtkIndent.h:113
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.
@ info
Definition: vtkX3D.h:382
@ port
Definition: vtkX3D.h:453