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 =========================================================================*/
34 #ifndef vtkPointData_h
35 #define vtkPointData_h
36 
37 #include "vtkCommonDataModelModule.h" // For export macro
38 #include "vtkDataSetAttributes.h"
39 #include "vtkDeprecation.h" // for VTK_DEPRECATED_IN_9_1_0
40 
41 class VTKCOMMONDATAMODEL_EXPORT vtkPointData : public vtkDataSetAttributes
42 {
43 public:
44  static vtkPointData* New();
45  static vtkPointData* ExtendedNew();
46 
48  void PrintSelf(ostream& os, vtkIndent indent) override;
49  VTK_DEPRECATED_IN_9_1_0("Use vtkFieldData::NullData")
50  void NullPoint(vtkIdType ptId);
51 
52 protected:
53  vtkPointData();
54  ~vtkPointData() override = default;
55 
56 private:
57  vtkPointData(const vtkPointData&) = delete;
58  void operator=(const vtkPointData&) = delete;
59 };
60 
61 #endif
#define VTK_DEPRECATED_IN_9_1_0(reason)
represent and manipulate point attribute data
Definition: vtkPointData.h:41
int vtkIdType
Definition: vtkType.h:332
static vtkDataSetAttributes * ExtendedNew()
a simple class to control print indentation
Definition: vtkIndent.h:39
represent and manipulate attribute data in a dataset
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkDataSetAttributes * New()
Construct object with copying turned on for all data.