VTK  9.3.1
vtkOutlineFilter.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
29 #ifndef vtkOutlineFilter_h
30 #define vtkOutlineFilter_h
31 
32 #include "vtkFiltersModelingModule.h" // For export macro
33 #include "vtkPolyDataAlgorithm.h"
34 
35 VTK_ABI_NAMESPACE_BEGIN
36 class VTKFILTERSMODELING_EXPORT vtkOutlineFilter : public vtkPolyDataAlgorithm
37 {
38 public:
40 
43  static vtkOutlineFilter* New();
45  void PrintSelf(ostream& os, vtkIndent indent) override;
47 
49 
52  vtkSetMacro(GenerateFaces, vtkTypeBool);
53  vtkBooleanMacro(GenerateFaces, vtkTypeBool);
54  vtkGetMacro(GenerateFaces, vtkTypeBool);
56 
58  {
59  ROOT_LEVEL = 0,
60  LEAF_DATASETS = 1,
61  ROOT_AND_LEAFS = 2,
62  SPECIFIED_INDEX = 3
63  };
64 
66 
76  vtkSetMacro(CompositeStyle, int);
77  vtkGetMacro(CompositeStyle, int);
78  void SetCompositeStyleToRoot() { this->SetCompositeStyle(ROOT_LEVEL); }
79  void SetCompositeStyleToLeafs() { this->SetCompositeStyle(LEAF_DATASETS); }
80  void SetCompositeStyleToRootAndLeafs() { this->SetCompositeStyle(ROOT_AND_LEAFS); }
81  void SetCompositeStyleToSpecifiedIndex() { this->SetCompositeStyle(SPECIFIED_INDEX); }
83 
85 
92  void AddIndex(unsigned int index);
93  void RemoveIndex(unsigned int index);
94  void RemoveAllIndices();
96 
98 
103  vtkSetMacro(OutputPointsPrecision, int);
104  vtkGetMacro(OutputPointsPrecision, int);
106 
107 protected:
109  ~vtkOutlineFilter() override;
110 
114 
115  class vtkIndexSet;
116  vtkIndexSet* Indices;
117 
118  void AppendOutline(vtkPoints* pts, vtkCellArray* lines, vtkCellArray* faces, double bds[6]);
119 
121  int FillInputPortInformation(int port, vtkInformation* info) override;
122 
123 private:
124  vtkOutlineFilter(const vtkOutlineFilter&) = delete;
125  void operator=(const vtkOutlineFilter&) = delete;
126 };
127 
128 VTK_ABI_NAMESPACE_END
129 #endif
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
void SetCompositeStyleToRoot()
Specify a style for creating bounding boxes around input composite datasets.
static vtkPolyDataAlgorithm * New()
int vtkTypeBool
Definition: vtkABI.h:64
create wireframe outline for an arbitrary data set or composite dataset
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:28
void SetCompositeStyleToLeafs()
Specify a style for creating bounding boxes around input composite datasets.
object to represent cell connectivity
Definition: vtkCellArray.h:175
void SetCompositeStyleToRootAndLeafs()
Specify a style for creating bounding boxes around input composite datasets.
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
Store zero or more vtkInformation instances.
vtkIndexSet * Indices
void SetCompositeStyleToSpecifiedIndex()
Specify a style for creating bounding boxes around input composite datasets.
vtkTypeBool GenerateFaces
represent and manipulate 3D points
Definition: vtkPoints.h:28
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.