VTK
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 =========================================================================*/
28 #ifndef vtkPLinearExtrusionFilter_h
29 #define vtkPLinearExtrusionFilter_h
30 
31 #include "vtkFiltersParallelModule.h" // For export macro
33 
34 class VTKFILTERSPARALLEL_EXPORT vtkPLinearExtrusionFilter : public vtkLinearExtrusionFilter
35 {
36 public:
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
44 
45  // To get piece invariance, this filter has to request an
46  // extra ghost level. Since piece invariance is not very
47  // important for this filter, it is optional. Without invariance,
48  // Internal surfaces will be generated. These surface
49  // Are hidden by the normal surface generated by this filter.
50  // By default, PieceInvariance is off.
51  vtkSetMacro(PieceInvariant, int);
52  vtkGetMacro(PieceInvariant, int);
53  vtkBooleanMacro(PieceInvariant, int);
54 
55 protected:
58 
61 
63 private:
64  vtkPLinearExtrusionFilter(const vtkPLinearExtrusionFilter&) VTK_DELETE_FUNCTION;
65  void operator=(const vtkPLinearExtrusionFilter&) VTK_DELETE_FUNCTION;
66 };
67 
68 #endif
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
virtual int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
static vtkLinearExtrusionFilter * New()
Create object with normal extrusion type, capping on, scale factor=1.0, vector (0,0,1), and extrusion point (0,0,0).
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
sweep polygonal data creating a "skirt" from free edges and lines, and lines from vertices ...
Store zero or more vtkInformation instances.
vtkBooleanMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
Subclass that handles piece invariance.