VTK  9.3.20240422
vtkStructuredGridOutlineFilter.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
127#ifndef vtkStructuredGridOutlineFilter_h
128#define vtkStructuredGridOutlineFilter_h
129
130#include "vtkFiltersCoreModule.h" // For export macro
131#include "vtkPolyDataAlgorithm.h"
132
133VTK_ABI_NAMESPACE_BEGIN
134class VTKFILTERSCORE_EXPORT vtkStructuredGridOutlineFilter : public vtkPolyDataAlgorithm
135{
136public:
139 void PrintSelf(ostream& os, vtkIndent indent) override;
140
141protected:
144
146 int FillInputPortInformation(int port, vtkInformation* info) override;
147
148private:
150 void operator=(const vtkStructuredGridOutlineFilter&) = delete;
151};
152
153VTK_ABI_NAMESPACE_END
154#endif
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
create wireframe outline for structured grid
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkStructuredGridOutlineFilter * New()
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkStructuredGridOutlineFilter() override=default