VTK  9.0.1
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 =========================================================================*/
31 #ifndef vtkHyperTreeGridOutlineFilter_h
32 #define vtkHyperTreeGridOutlineFilter_h
33 
34 #include "vtkFiltersModelingModule.h" // For export macro
36 
37 class vtkOutlineSource;
38 
39 class VTKFILTERSMODELING_EXPORT vtkHyperTreeGridOutlineFilter : public vtkHyperTreeGridAlgorithm
40 {
41 public:
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
47 
50  vtkSetMacro(GenerateFaces, vtkTypeBool);
51  vtkBooleanMacro(GenerateFaces, vtkTypeBool);
52  vtkGetMacro(GenerateFaces, vtkTypeBool);
54 
55 protected:
58 
64 
65  // JBL Pour moi, c'est un defaut de design de vtkHyperTreeGridAlgorithm
66  int ProcessTrees(vtkHyperTreeGrid* input, vtkDataObject* outputDO) override;
67 
68 private:
70  void operator=(const vtkHyperTreeGridOutlineFilter&) = delete;
71 };
72 
73 #endif
74 // VTK-HeaderTest-Exclude: vtkHyperTreeGridOutlineFilter.h
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:33
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:59
virtual int ProcessTrees(vtkHyperTreeGrid *, vtkDataObject *)=0
Main routine to process individual trees in the grid This is pure virtual method to be implemented by...