VTK
vtkPoints.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPoints.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 =========================================================================*/
29 #ifndef vtkPoints_h
30 #define vtkPoints_h
31 
32 #include "vtkCommonCoreModule.h" // For export macro
33 #include "vtkObject.h"
34 
35 #include "vtkDataArray.h" // Needed for inline methods
36 
37 class vtkIdList;
38 
39 class VTKCOMMONCORE_EXPORT vtkPoints : public vtkObject
40 {
41 public:
42 
43  static vtkPoints *New(int dataType);
44 
45  static vtkPoints *New();
46 
47  vtkTypeMacro(vtkPoints,vtkObject);
48  void PrintSelf(ostream& os, vtkIndent indent) override;
49 
53  virtual vtkTypeBool Allocate(vtkIdType sz, vtkIdType ext = 1000);
54 
58  virtual void Initialize();
59 
68  virtual void SetData(vtkDataArray *);
69  vtkDataArray *GetData() { return this->Data; }
70 
75  virtual int GetDataType();
76 
80  virtual void SetDataType(int dataType);
81  void SetDataTypeToBit() { this->SetDataType(VTK_BIT); }
82  void SetDataTypeToChar() { this->SetDataType(VTK_CHAR); }
83  void SetDataTypeToUnsignedChar() { this->SetDataType(VTK_UNSIGNED_CHAR); }
84  void SetDataTypeToShort() { this->SetDataType(VTK_SHORT); }
85  void SetDataTypeToUnsignedShort() { this->SetDataType(VTK_UNSIGNED_SHORT); }
86  void SetDataTypeToInt() { this->SetDataType(VTK_INT); }
87  void SetDataTypeToUnsignedInt() { this->SetDataType(VTK_UNSIGNED_INT); }
88  void SetDataTypeToLong() { this->SetDataType(VTK_LONG); }
89  void SetDataTypeToUnsignedLong() { this->SetDataType(VTK_UNSIGNED_LONG); }
90  void SetDataTypeToFloat() { this->SetDataType(VTK_FLOAT); }
91  void SetDataTypeToDouble() { this->SetDataType(VTK_DOUBLE); }
92 
97  void *GetVoidPointer(const int id) { return this->Data->GetVoidPointer(id); }
98 
102  virtual void Squeeze() { this->Data->Squeeze(); }
103 
107  virtual void Reset();
108 
110 
115  virtual void DeepCopy(vtkPoints *ad);
116  virtual void ShallowCopy(vtkPoints *ad);
118 
127  unsigned long GetActualMemorySize();
128 
132  vtkIdType GetNumberOfPoints() { return this->Data->GetNumberOfTuples(); }
133 
140  double *GetPoint(vtkIdType id)
141  VTK_EXPECTS(0 <= id && id < GetNumberOfPoints())
142  VTK_SIZEHINT(3)
143  { return this->Data->GetTuple(id); }
144 
149  void GetPoint(vtkIdType id, double x[3])
150  VTK_EXPECTS(0 <= id && id < GetNumberOfPoints())
151  VTK_SIZEHINT(3)
152  { this->Data->GetTuple(id,x); }
153 
160  void SetPoint(vtkIdType id, const float x[3])
161  VTK_EXPECTS(0 <= id && id < GetNumberOfPoints())
162  { this->Data->SetTuple(id,x); }
163  void SetPoint(vtkIdType id, const double x[3])
164  VTK_EXPECTS(0 <= id && id < GetNumberOfPoints())
165  { this->Data->SetTuple(id,x); }
166  void SetPoint(vtkIdType id, double x, double y, double z)
167  VTK_EXPECTS(0 <= id && id < GetNumberOfPoints());
168 
170 
174  void InsertPoint(vtkIdType id, const float x[3])
175  VTK_EXPECTS(0 <= id)
176  { this->Data->InsertTuple(id,x);};
177  void InsertPoint(vtkIdType id, const double x[3])
178  VTK_EXPECTS(0 <= id)
179  {this->Data->InsertTuple(id,x);};
180  void InsertPoint(vtkIdType id, double x, double y, double z)
181  VTK_EXPECTS(0 <= id);
183 
190  { this->Data->InsertTuples(dstIds, srcIds, source->Data); }
191 
197  void InsertPoints(vtkIdType dstStart, vtkIdType n, vtkIdType srcStart,
198  vtkPoints* source)
199  { this->Data->InsertTuples(dstStart, n, srcStart, source->Data); }
200 
204  vtkIdType InsertNextPoint(const float x[3])
205  { return this->Data->InsertNextTuple(x); }
206  vtkIdType InsertNextPoint(const double x[3])
207  { return this->Data->InsertNextTuple(x); }
208  vtkIdType InsertNextPoint(double x, double y, double z);
209 
215  void SetNumberOfPoints(vtkIdType numPoints);
216 
221  vtkTypeBool Resize(vtkIdType numPoints);
222 
226  void GetPoints(vtkIdList *ptId, vtkPoints *fp);
227 
231  virtual void ComputeBounds();
232 
236  double *GetBounds() VTK_SIZEHINT(6);
237 
241  void GetBounds(double bounds[6]);
242 
246  vtkMTimeType GetMTime() override;
247 
253  void Modified() override;
254 
255 protected:
256  vtkPoints(int dataType = VTK_FLOAT);
257  ~vtkPoints() override;
258 
259  double Bounds[6];
260  vtkTimeStamp ComputeTime; // Time at which bounds computed
261  vtkDataArray *Data; // Array which represents data
262 
263 private:
264  vtkPoints(const vtkPoints&) = delete;
265  void operator=(const vtkPoints&) = delete;
266 };
267 
268 inline void vtkPoints::Reset()
269 {
270  this->Data->Reset();
271  this->Modified();
272 }
273 
275 {
276  this->Data->SetNumberOfComponents(3);
277  this->Data->SetNumberOfTuples(numPoints);
278  this->Modified();
279 }
280 
282 {
283  this->Data->SetNumberOfComponents(3);
284  this->Modified();
285  return this->Data->Resize(numPoints);
286 }
287 
288 inline void vtkPoints::SetPoint(vtkIdType id, double x, double y, double z)
289 {
290  double p[3] = { x, y, z };
291  this->Data->SetTuple(id, p);
292 }
293 
294 inline void vtkPoints::InsertPoint(vtkIdType id, double x, double y, double z)
295 {
296  double p[3] = { x, y, z };
297  this->Data->InsertTuple(id, p);
298 }
299 
300 inline vtkIdType vtkPoints::InsertNextPoint(double x, double y, double z)
301 {
302  double p[3] = { x, y, z };
303  return this->Data->InsertNextTuple(p);
304 }
305 
306 #endif
307 
void SetDataTypeToInt()
Definition: vtkPoints.h:86
void SetDataTypeToFloat()
Definition: vtkPoints.h:90
void SetDataTypeToUnsignedChar()
Definition: vtkPoints.h:83
void GetPoint(vtkIdType id, double x[3])
Copy point components into user provided array v[3] for specified id.
Definition: vtkPoints.h:149
#define VTK_UNSIGNED_INT
Definition: vtkType.h:55
abstract base class for most VTK objects
Definition: vtkObject.h:59
vtkIdType InsertNextPoint(const double x[3])
Definition: vtkPoints.h:206
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkIdType GetNumberOfPoints()
Return number of points in array.
Definition: vtkPoints.h:132
void SetPoint(vtkIdType id, const double x[3])
Definition: vtkPoints.h:163
vtkTypeUInt32 vtkMTimeType
Definition: vtkType.h:302
void InsertPoints(vtkIdList *dstIds, vtkIdList *srcIds, vtkPoints *source)
Copy the points indexed in srcIds from the source array to the tuple locations indexed by dstIds in t...
Definition: vtkPoints.h:189
#define VTK_UNSIGNED_SHORT
Definition: vtkType.h:53
void SetDataTypeToLong()
Definition: vtkPoints.h:88
record modification and/or execution time
Definition: vtkTimeStamp.h:35
vtkIdType InsertNextPoint(const float x[3])
Insert point into next available slot.
Definition: vtkPoints.h:204
void SetPoint(vtkIdType id, const float x[3])
Insert point into object.
Definition: vtkPoints.h:160
vtkDataArray * Data
Definition: vtkPoints.h:261
int vtkIdType
Definition: vtkType.h:347
void SetDataTypeToUnsignedInt()
Definition: vtkPoints.h:87
void SetDataTypeToChar()
Definition: vtkPoints.h:82
int vtkTypeBool
Definition: vtkABI.h:69
vtkTypeBool Resize(vtkIdType numPoints)
Resize the internal array while conserving the data.
Definition: vtkPoints.h:281
#define VTK_DOUBLE
Definition: vtkType.h:59
#define VTK_FLOAT
Definition: vtkType.h:58
void InsertPoint(vtkIdType id, const float x[3])
Insert point into object.
Definition: vtkPoints.h:174
a simple class to control print indentation
Definition: vtkIndent.h:39
void * GetVoidPointer(const int id)
Return a void pointer.
Definition: vtkPoints.h:97
list of point or cell ids
Definition: vtkIdList.h:36
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:54
virtual vtkMTimeType GetMTime()
Return this object&#39;s modified time.
#define VTK_SHORT
Definition: vtkType.h:52
void SetDataTypeToUnsignedLong()
Definition: vtkPoints.h:89
#define VTK_CHAR
Definition: vtkType.h:49
#define VTK_LONG
Definition: vtkType.h:56
virtual void Modified()
Update the modification time for this object.
double * GetPoint(vtkIdType id)
Return a pointer to a double point x[3] for a specific id.
Definition: vtkPoints.h:140
void SetNumberOfPoints(vtkIdType numPoints)
Specify the number of points for this object to hold.
Definition: vtkPoints.h:274
#define VTK_SIZEHINT(...)
vtkTimeStamp ComputeTime
Definition: vtkPoints.h:260
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
void SetDataTypeToBit()
Definition: vtkPoints.h:81
#define VTK_UNSIGNED_CHAR
Definition: vtkType.h:51
void SetDataTypeToShort()
Definition: vtkPoints.h:84
virtual void Reset()
Make object look empty but do not delete memory.
Definition: vtkPoints.h:268
#define VTK_BIT
Definition: vtkType.h:48
void SetDataTypeToUnsignedShort()
Definition: vtkPoints.h:85
#define VTK_UNSIGNED_LONG
Definition: vtkType.h:57
void InsertPoints(vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkPoints *source)
Copy n consecutive points starting at srcStart from the source array to this array, starting at the dstStart location.
Definition: vtkPoints.h:197
vtkDataArray * GetData()
Definition: vtkPoints.h:69
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
virtual void Squeeze()
Reclaim any extra memory.
Definition: vtkPoints.h:102
void SetDataTypeToDouble()
Definition: vtkPoints.h:91
#define VTK_EXPECTS(x)
void InsertPoint(vtkIdType id, const double x[3])
Insert point into object.
Definition: vtkPoints.h:177
#define VTK_INT
Definition: vtkType.h:54
represent and manipulate 3D points
Definition: vtkPoints.h:39