VTK  9.5.20251207
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
162
163#ifndef vtkStripper_h
164#define vtkStripper_h
165
166#include "vtkFiltersCoreModule.h" // For export macro
167#include "vtkPolyDataAlgorithm.h"
168#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
169
170VTK_ABI_NAMESPACE_BEGIN
171class VTKFILTERSCORE_EXPORT VTK_MARSHALAUTO vtkStripper : public vtkPolyDataAlgorithm
172{
173public:
175 void PrintSelf(ostream& os, vtkIndent indent) override;
176
180 static vtkStripper* New();
181
183
187 vtkSetClampMacro(MaximumLength, int, 4, 100000);
188 vtkGetMacro(MaximumLength, int);
190
192
200
202
212
214
224
226
235
236protected:
238 ~vtkStripper() override = default;
239
240 // Usual data generation method
242
248
249private:
250 vtkStripper(const vtkStripper&) = delete;
251 void operator=(const vtkStripper&) = delete;
252};
253
254VTK_ABI_NAMESPACE_END
255#endif
a simple class to control print indentation
Definition vtkIndent.h:108
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