Loading [MathJax]/extensions/tex2jax.js
VTK  9.4.20250420
vtkMarkBoundaryFilter.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
53#ifndef vtkMarkBoundaryFilter_h
54#define vtkMarkBoundaryFilter_h
55
56#include "vtkDataSetAlgorithm.h"
57#include "vtkFiltersGeometryModule.h" // For export macro
58
59VTK_ABI_NAMESPACE_BEGIN
60class VTKFILTERSGEOMETRY_EXPORT vtkMarkBoundaryFilter : public vtkDataSetAlgorithm
61{
62public:
64
69 void PrintSelf(ostream& os, vtkIndent indent) override;
71
73
79 vtkSetMacro(GenerateBoundaryFaces, bool);
80 vtkGetMacro(GenerateBoundaryFaces, bool);
81 vtkBooleanMacro(GenerateBoundaryFaces, bool);
83
85
90 vtkSetStringMacro(BoundaryPointsName);
91 vtkGetStringMacro(BoundaryPointsName);
92 vtkSetStringMacro(BoundaryCellsName);
93 vtkGetStringMacro(BoundaryCellsName);
94 vtkSetStringMacro(BoundaryFacesName);
95 vtkGetStringMacro(BoundaryFacesName);
97
98protected:
101
104 int FillInputPortInformation(int port, vtkInformation* info) override;
105
107
111
112private:
114 void operator=(const vtkMarkBoundaryFilter&) = delete;
115};
116
117VTK_ABI_NAMESPACE_END
118#endif
Superclass for algorithms that produce output of the same type as input.
a simple class to control print indentation
Definition vtkIndent.h:108
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.