VTK  9.2.6
vtkPointData.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkPointData.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=========================================================================*/
43#ifndef vtkPointData_h
44#define vtkPointData_h
45
46#include "vtkCommonDataModelModule.h" // For export macro
48#include "vtkDeprecation.h" // for VTK_DEPRECATED_IN_9_1_0
49
50class VTKCOMMONDATAMODEL_EXPORT vtkPointData : public vtkDataSetAttributes
51{
52public:
53 static vtkPointData* New();
55
57 void PrintSelf(ostream& os, vtkIndent indent) override;
58 VTK_DEPRECATED_IN_9_1_0("Use vtkFieldData::NullData")
59 void NullPoint(vtkIdType ptId);
60
61protected:
63 ~vtkPointData() override = default;
64
65private:
66 vtkPointData(const vtkPointData&) = delete;
67 void operator=(const vtkPointData&) = delete;
68};
69
70#endif
represent and manipulate attribute data in a dataset
a simple class to control print indentation
Definition vtkIndent.h:49
represent and manipulate point attribute data
static vtkPointData * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkPointData * ExtendedNew()
#define VTK_DEPRECATED_IN_9_1_0(reason)
int vtkIdType
Definition vtkType.h:332