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 =========================================================================*/
134 #ifndef vtkPointData_h
135 #define vtkPointData_h
136 
137 #include "vtkCommonDataModelModule.h" // For export macro
138 #include "vtkDataSetAttributes.h"
139 #include "vtkDeprecation.h" // for VTK_DEPRECATED_IN_9_0_0
140 
141 class VTKCOMMONDATAMODEL_EXPORT vtkPointData : public vtkDataSetAttributes
142 {
143 public:
144  static vtkPointData* New();
146 
148  void PrintSelf(ostream& os, vtkIndent indent) override;
149  VTK_DEPRECATED_IN_9_1_0("Use vtkFieldData::NullData")
150  void NullPoint(vtkIdType ptId);
151 
152 protected:
153  vtkPointData() = default;
154  ~vtkPointData() override = default;
155 
156 private:
157  vtkPointData(const vtkPointData&) = delete;
158  void operator=(const vtkPointData&) = delete;
159 };
160 
161 #endif
represent and manipulate attribute data in a dataset
a simple class to control print indentation
Definition: vtkIndent.h:113
represent and manipulate point attribute data
Definition: vtkPointData.h:142
static vtkPointData * New()
static vtkPointData * ExtendedNew()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
#define VTK_DEPRECATED_IN_9_1_0(reason)
int vtkIdType
Definition: vtkType.h:332