VTK  9.6.1
vtkStripper.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
53
54#ifndef vtkStripper_h
55#define vtkStripper_h
56
57#include "vtkFiltersCoreModule.h" // For export macro
59#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
60
61VTK_ABI_NAMESPACE_BEGIN
62class VTKFILTERSCORE_EXPORT VTK_MARSHALAUTO vtkStripper : public vtkPolyDataAlgorithm
63{
64public:
66 void PrintSelf(ostream& os, vtkIndent indent) override;
67
71 static vtkStripper* New();
72
74
78 vtkSetClampMacro(MaximumLength, int, 4, 100000);
79 vtkGetMacro(MaximumLength, int);
81
83
91
93
103
105
115
117
126
127protected:
129 ~vtkStripper() override = default;
130
131 // Usual data generation method
133
139
140private:
141 vtkStripper(const vtkStripper&) = delete;
142 void operator=(const vtkStripper&) = delete;
143};
144
145VTK_ABI_NAMESPACE_END
146#endif
a simple class to control print indentation
Definition vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
vtkTypeBool PassThroughPointIds
vtkTypeBool JoinContiguousSegments
~vtkStripper() override=default
static vtkStripper * New()
Construct object with MaximumLength set to 1000.
vtkTypeBool PassThroughCellIds
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
vtkTypeBool PassCellDataAsFieldData
int vtkTypeBool
Definition vtkABI.h:64
#define VTK_MARSHALAUTO