VTK  9.3.1
vtkHyperTreeGridOutlineFilter.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
22 #ifndef vtkHyperTreeGridOutlineFilter_h
23 #define vtkHyperTreeGridOutlineFilter_h
24 
25 #include "vtkFiltersModelingModule.h" // For export macro
27 
28 VTK_ABI_NAMESPACE_BEGIN
29 class vtkOutlineSource;
30 
31 class VTKFILTERSMODELING_EXPORT vtkHyperTreeGridOutlineFilter : public vtkHyperTreeGridAlgorithm
32 {
33 public:
36  void PrintSelf(ostream& os, vtkIndent indent) override;
37 
39 
42  vtkSetMacro(GenerateFaces, vtkTypeBool);
43  vtkBooleanMacro(GenerateFaces, vtkTypeBool);
44  vtkGetMacro(GenerateFaces, vtkTypeBool);
46 
47 protected:
50 
56 
57  // JBL Pour moi, c'est un defaut de design de vtkHyperTreeGridAlgorithm
58  int ProcessTrees(vtkHyperTreeGrid* input, vtkDataObject* outputDO) override;
59 
60 private:
62  void operator=(const vtkHyperTreeGridOutlineFilter&) = delete;
63 };
64 
65 VTK_ABI_NAMESPACE_END
66 #endif
int FillOutputPortInformation(int, vtkInformation *) override
Define default input and output port types.
Store vtkAlgorithm input/output information.
A dataset containing a grid of vtkHyperTree instances arranged as a rectilinear grid.
int vtkTypeBool
Definition: vtkABI.h:64
a simple class to control print indentation
Definition: vtkIndent.h:28
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
create wireframe outline around bounding box
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
This is called by the superclass.
Superclass for algorithms that produce a hyper tree grid as output.
create wireframe outline for arbitrary data set
int FillInputPortInformation(int, vtkInformation *) override
Define default input and output port types.
Store zero or more vtkInformation instances.
static vtkAlgorithm * New()
general representation of visualization data
Definition: vtkDataObject.h:54
virtual int ProcessTrees(vtkHyperTreeGrid *, vtkDataObject *)=0
Main routine to process individual trees in the grid This is pure virtual method to be implemented by...