VTK  9.2.6
vtkHyperTreeGridOutlineFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkHyperTreeGridOutlineFilter.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 =========================================================================*/
34 #ifndef vtkHyperTreeGridOutlineFilter_h
35 #define vtkHyperTreeGridOutlineFilter_h
36 
37 #include "vtkFiltersModelingModule.h" // For export macro
39 
40 class vtkOutlineSource;
41 
42 class VTKFILTERSMODELING_EXPORT vtkHyperTreeGridOutlineFilter : public vtkHyperTreeGridAlgorithm
43 {
44 public:
47  void PrintSelf(ostream& os, vtkIndent indent) override;
48 
50 
53  vtkSetMacro(GenerateFaces, vtkTypeBool);
54  vtkBooleanMacro(GenerateFaces, vtkTypeBool);
55  vtkGetMacro(GenerateFaces, vtkTypeBool);
57 
58 protected:
61 
67 
68  // JBL Pour moi, c'est un defaut de design de vtkHyperTreeGridAlgorithm
69  int ProcessTrees(vtkHyperTreeGrid* input, vtkDataObject* outputDO) override;
70 
71 private:
73  void operator=(const vtkHyperTreeGridOutlineFilter&) = delete;
74 };
75 
76 #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:69
a simple class to control print indentation
Definition: vtkIndent.h:39
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:65
virtual int ProcessTrees(vtkHyperTreeGrid *, vtkDataObject *)=0
Main routine to process individual trees in the grid This is pure virtual method to be implemented by...