VTK  9.1.0
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=========================================================================*/
25#ifndef vtkPointData_h
26#define vtkPointData_h
27
28#include "vtkCommonDataModelModule.h" // For export macro
30#include "vtkDeprecation.h" // for VTK_DEPRECATED_IN_9_0_0
31
32class VTKCOMMONDATAMODEL_EXPORT vtkPointData : public vtkDataSetAttributes
33{
34public:
35 static vtkPointData* New();
37
39 void PrintSelf(ostream& os, vtkIndent indent) override;
40 VTK_DEPRECATED_IN_9_1_0("Use vtkFieldData::NullData")
41 void NullPoint(vtkIdType ptId);
42
43protected:
44 vtkPointData() = default;
45 ~vtkPointData() override = default;
46
47private:
48 vtkPointData(const vtkPointData&) = delete;
49 void operator=(const vtkPointData&) = delete;
50};
51
52#endif
represent and manipulate attribute data in a dataset
a simple class to control print indentation
Definition: vtkIndent.h:34
represent and manipulate point attribute data
Definition: vtkPointData.h:33
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