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