VTK  9.4.20250208
vtkExtractPointCloudPiece.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
12#ifndef vtkExtractPointCloudPiece_h
13#define vtkExtractPointCloudPiece_h
14
15#include "vtkFiltersPointsModule.h" // For export macro
17
18VTK_ABI_NAMESPACE_BEGIN
19class vtkIdList;
20class vtkIntArray;
21
22class VTKFILTERSPOINTS_EXPORT vtkExtractPointCloudPiece : public vtkPolyDataAlgorithm
23{
24public:
26
31 void PrintSelf(ostream& os, vtkIndent indent) override;
33
35
40 vtkSetMacro(ModuloOrdering, bool);
41 vtkGetMacro(ModuloOrdering, bool);
42 vtkBooleanMacro(ModuloOrdering, bool);
44
45protected:
47 ~vtkExtractPointCloudPiece() override = default;
48
49 // Usual data generation method
53
54private:
56 void operator=(const vtkExtractPointCloudPiece&) = delete;
57};
58
59VTK_ABI_NAMESPACE_END
60#endif
Return a piece of a point cloud.
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, printing, and type information.
~vtkExtractPointCloudPiece() override=default
static vtkExtractPointCloudPiece * New()
Standard methods for instantiation, printing, and type information.
int RequestUpdateExtent(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
list of point or cell ids
Definition vtkIdList.h:133
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
dynamic, self-adjusting array of int
Superclass for algorithms that produce only polydata as output.