VTK
9.1.0
Filters
Core
vtkRemoveUnusedPoints.h
Go to the documentation of this file.
1
/*=========================================================================
2
3
Program: Visualization Toolkit
4
Module: vtkRemoveUnusedPoints.h
5
6
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7
All rights reserved.
8
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10
This software is distributed WITHOUT ANY WARRANTY; without even
11
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12
PURPOSE. See the above copyright notice for more information.
13
14
=========================================================================*/
23
#ifndef vtkRemoveUnusedPoints_h
24
#define vtkRemoveUnusedPoints_h
25
26
#include "vtkFiltersCoreModule.h"
// For export macro
27
#include "
vtkUnstructuredGridAlgorithm.h
"
28
29
class
VTKFILTERSCORE_EXPORT
vtkRemoveUnusedPoints
:
public
vtkUnstructuredGridAlgorithm
30
{
31
public
:
32
static
vtkRemoveUnusedPoints
*
New
();
33
vtkTypeMacro(
vtkRemoveUnusedPoints
,
vtkUnstructuredGridAlgorithm
);
34
void
PrintSelf
(ostream& os,
vtkIndent
indent)
override
;
35
37
41
vtkSetMacro(GenerateOriginalPointIds,
bool
);
42
vtkGetMacro(GenerateOriginalPointIds,
bool
);
43
vtkBooleanMacro(GenerateOriginalPointIds,
bool
);
45
47
51
vtkSetStringMacro(OriginalPointIdsArrayName);
52
vtkGetStringMacro(OriginalPointIdsArrayName);
54
55
protected
:
56
vtkRemoveUnusedPoints
();
57
~vtkRemoveUnusedPoints
()
override
;
58
59
int
RequestData
(
vtkInformation
* request,
vtkInformationVector
** inputVector,
60
vtkInformationVector
* outputVector)
override
;
61
62
private
:
63
vtkRemoveUnusedPoints
(
const
vtkRemoveUnusedPoints
&) =
delete
;
64
void
operator=(
const
vtkRemoveUnusedPoints
&) =
delete
;
65
66
bool
GenerateOriginalPointIds;
67
char
* OriginalPointIdsArrayName;
68
};
69
70
#endif
vtkInformationVector
Store zero or more vtkInformation instances.
Definition:
vtkInformationVector.h:145
vtkRemoveUnusedPoints::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkRemoveUnusedPoints::New
static vtkRemoveUnusedPoints * New()
vtkIndent
a simple class to control print indentation
Definition:
vtkIndent.h:113
vtkRemoveUnusedPoints::~vtkRemoveUnusedPoints
~vtkRemoveUnusedPoints() override
vtkInformation
Store vtkAlgorithm input/output information.
Definition:
vtkInformation.h:183
vtkRemoveUnusedPoints::vtkRemoveUnusedPoints
vtkRemoveUnusedPoints()
vtkUnstructuredGridAlgorithm.h
vtkUnstructuredGridAlgorithm
Superclass for algorithms that produce only unstructured grid as output.
Definition:
vtkUnstructuredGridAlgorithm.h:41
vtkRemoveUnusedPoints::RequestData
int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector) override
This is called by the superclass.
vtkRemoveUnusedPoints
remove points not used by any cell.
Definition:
vtkRemoveUnusedPoints.h:30
Generated on Fri Nov 5 2021 00:11:04 for VTK by
1.8.20