VTK
vtkOutlineFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkOutlineFilter.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 =========================================================================*/
24 #ifndef vtkOutlineFilter_h
25 #define vtkOutlineFilter_h
26 
27 #include "vtkFiltersModelingModule.h" // For export macro
28 #include "vtkPolyDataAlgorithm.h"
29 
30 class vtkOutlineSource;
31 
32 class VTKFILTERSMODELING_EXPORT vtkOutlineFilter : public vtkPolyDataAlgorithm
33 {
34 public:
35  static vtkOutlineFilter *New();
37  void PrintSelf(ostream& os, vtkIndent indent) override;
38 
40 
43  vtkSetMacro(GenerateFaces, vtkTypeBool);
44  vtkBooleanMacro(GenerateFaces, vtkTypeBool);
45  vtkGetMacro(GenerateFaces, vtkTypeBool);
47 
48 protected:
50  ~vtkOutlineFilter() override;
51 
56 
57 private:
58  vtkOutlineFilter(const vtkOutlineFilter&) = delete;
59  void operator=(const vtkOutlineFilter&) = delete;
60 };
61 
62 #endif
63 // VTK-HeaderTest-Exclude: vtkOutlineFilter.h
vtkOutlineSource
create wireframe outline around bounding box
Definition: vtkOutlineSource.h:36
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkOutlineFilter::OutlineSource
vtkOutlineSource * OutlineSource
Definition: vtkOutlineFilter.h:53
vtkPolyDataAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkPolyDataAlgorithm.h
vtkX3D::port
Definition: vtkX3D.h:447
vtkPolyDataAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkPolyDataAlgorithm::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkOutlineFilter::GenerateFaces
vtkTypeBool GenerateFaces
Definition: vtkOutlineFilter.h:52
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:80
vtkX3D::info
Definition: vtkX3D.h:376
vtkOutlineFilter
create wireframe outline for arbitrary data set
Definition: vtkOutlineFilter.h:32
vtkTypeBool
int vtkTypeBool
Definition: vtkABI.h:69
vtkPolyDataAlgorithm::New
static vtkPolyDataAlgorithm * New()
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:41