VTK  9.3.20240418
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
16 #include "vtkPolyDataAlgorithm.h"
17 
18 VTK_ABI_NAMESPACE_BEGIN
19 class vtkIdList;
20 class vtkIntArray;
21 
22 class VTKFILTERSPOINTS_EXPORT vtkExtractPointCloudPiece : public vtkPolyDataAlgorithm
23 {
24 public:
26 
31  void PrintSelf(ostream& os, vtkIndent indent) override;
33 
35 
40  vtkSetMacro(ModuloOrdering, bool);
41  vtkGetMacro(ModuloOrdering, bool);
42  vtkBooleanMacro(ModuloOrdering, bool);
44 
45 protected:
47  ~vtkExtractPointCloudPiece() override = default;
48 
49  // Usual data generation method
53 
54 private:
56  void operator=(const vtkExtractPointCloudPiece&) = delete;
57 };
58 
59 VTK_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.
static vtkExtractPointCloudPiece * New()
Standard methods for instantiation, printing, and type information.
~vtkExtractPointCloudPiece() override=default
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
Definition: vtkIntArray.h:144
Superclass for algorithms that produce only polydata as output.