VTK  9.4.20241121
vtkPLinearExtrusionFilter.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
16#ifndef vtkPLinearExtrusionFilter_h
17#define vtkPLinearExtrusionFilter_h
18
19#include "vtkFiltersParallelModule.h" // For export macro
21
22VTK_ABI_NAMESPACE_BEGIN
23class VTKFILTERSPARALLEL_EXPORT vtkPLinearExtrusionFilter : public vtkLinearExtrusionFilter
24{
25public:
27 void PrintSelf(ostream& os, vtkIndent indent) override;
28
33
34 // To get piece invariance, this filter has to request an
35 // extra ghost level. Since piece invariance is not very
36 // important for this filter, it is optional. Without invariance,
37 // Internal surfaces will be generated. These surface
38 // Are hidden by the normal surface generated by this filter.
39 // By default, PieceInvariance is off.
40 vtkSetMacro(PieceInvariant, vtkTypeBool);
41 vtkGetMacro(PieceInvariant, vtkTypeBool);
42 vtkBooleanMacro(PieceInvariant, vtkTypeBool);
43
44protected:
46 ~vtkPLinearExtrusionFilter() override = default;
47
50
52
53private:
55 void operator=(const vtkPLinearExtrusionFilter&) = delete;
56};
57
58VTK_ABI_NAMESPACE_END
59#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
sweep polygonal data creating a "skirt" from free edges and lines, and lines from vertices
Subclass that handles piece invariance.
~vtkPLinearExtrusionFilter() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkPLinearExtrusionFilter * New()
Create an object with PieceInvariant off.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int vtkTypeBool
Definition vtkABI.h:64