VTK  9.1.0
vtkPLinearExtrusionFilter.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkPLinearExtrusionFilter.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=========================================================================*/
25#ifndef vtkPLinearExtrusionFilter_h
26#define vtkPLinearExtrusionFilter_h
27
28#include "vtkFiltersParallelModule.h" // For export macro
30
31class VTKFILTERSPARALLEL_EXPORT vtkPLinearExtrusionFilter : public vtkLinearExtrusionFilter
32{
33public:
35 void PrintSelf(ostream& os, vtkIndent indent) override;
36
41
42 // To get piece invariance, this filter has to request an
43 // extra ghost level. Since piece invariance is not very
44 // important for this filter, it is optional. Without invariance,
45 // Internal surfaces will be generated. These surface
46 // Are hidden by the normal surface generated by this filter.
47 // By default, PieceInvariance is off.
48 vtkSetMacro(PieceInvariant, vtkTypeBool);
49 vtkGetMacro(PieceInvariant, vtkTypeBool);
50 vtkBooleanMacro(PieceInvariant, vtkTypeBool);
51
52protected:
54 ~vtkPLinearExtrusionFilter() override = default;
55
58
60
61private:
63 void operator=(const vtkPLinearExtrusionFilter&) = delete;
64};
65
66#endif
a simple class to control print indentation
Definition: vtkIndent.h:113
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:69