VTK  9.0.1
vtkPeriodicDataArray.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPeriodicDataArray.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 =========================================================================*/
15 
29 #ifndef vtkPeriodicDataArray_h
30 #define vtkPeriodicDataArray_h
31 
32 #include "vtkAOSDataArrayTemplate.h" // Template
33 #include "vtkGenericDataArray.h" // Parent
34 
35 template <class Scalar>
36 class vtkPeriodicDataArray : public vtkGenericDataArray<vtkPeriodicDataArray<Scalar>, Scalar>
37 {
39 
40 public:
42  typedef typename Superclass::ValueType ValueType;
43 
44  void PrintSelf(ostream& os, vtkIndent indent) override;
45 
50 
54  void Initialize() override;
55 
59  void GetTuples(vtkIdList* ptIds, vtkAbstractArray* output) override;
60 
64  void GetTuples(vtkIdType p1, vtkIdType p2, vtkAbstractArray* output) override;
65 
69  void Squeeze() override;
70 
75 
80 
84  void LookupValue(vtkVariant value, vtkIdList* ids) override;
85 
89  vtkVariant GetVariantValue(vtkIdType idx) override;
90 
94  void ClearLookup() override;
95 
100  double* GetTuple(vtkIdType i) override;
101 
105  void GetTuple(vtkIdType i, double* tuple) override;
106 
110  vtkIdType LookupTypedValue(Scalar value) override;
111 
115  void LookupTypedValue(Scalar value, vtkIdList* ids) override;
116 
122  ValueType GetValue(vtkIdType idx) const;
123 
130 
134  void GetTypedTuple(vtkIdType idx, Scalar* t) const;
135 
141  ValueType GetTypedComponent(vtkIdType tupleIdx, int compIdx) const;
142 
146  unsigned long GetActualMemorySize() const override;
147 
151  vtkTypeBool Allocate(vtkIdType sz, vtkIdType ext) override;
152 
156  vtkTypeBool Resize(vtkIdType numTuples) override;
157 
161  void SetNumberOfTuples(vtkIdType number) override;
162 
166  void SetTuple(vtkIdType i, vtkIdType j, vtkAbstractArray* source) override;
167 
171  void SetTuple(vtkIdType i, const float* source) override;
172 
176  void SetTuple(vtkIdType i, const double* source) override;
177 
181  void InsertTuple(vtkIdType i, vtkIdType j, vtkAbstractArray* source) override;
182 
186  void InsertTuple(vtkIdType i, const float* source) override;
187 
191  void InsertTuple(vtkIdType i, const double* source) override;
192 
196  void InsertTuples(vtkIdList* dstIds, vtkIdList* srcIds, vtkAbstractArray* source) override;
197 
201  void InsertTuples(
202  vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkAbstractArray* source) override;
203 
208 
212  vtkIdType InsertNextTuple(const float* source) override;
213 
217  vtkIdType InsertNextTuple(const double* source) override;
218 
222  void DeepCopy(vtkAbstractArray* aa) override;
223 
227  void DeepCopy(vtkDataArray* da) override;
228 
232  void InterpolateTuple(
233  vtkIdType i, vtkIdList* ptIndices, vtkAbstractArray* source, double* weights) override;
234 
239  vtkAbstractArray* source2, double t) override;
240 
244  void SetVariantValue(vtkIdType idx, vtkVariant value) override;
245 
249  void InsertVariantValue(vtkIdType idx, vtkVariant value) override;
250 
254  void RemoveTuple(vtkIdType id) override;
255 
259  void RemoveFirstTuple() override;
260 
264  void RemoveLastTuple() override;
265 
269  void SetTypedTuple(vtkIdType i, const Scalar* t);
270 
274  void SetTypedComponent(vtkIdType t, int c, Scalar v);
275 
279  void InsertTypedTuple(vtkIdType i, const Scalar* t);
280 
284  vtkIdType InsertNextTypedTuple(const Scalar* t);
285 
289  void SetValue(vtkIdType idx, Scalar value);
290 
294  vtkIdType InsertNextValue(Scalar v);
295 
299  void InsertValue(vtkIdType idx, Scalar v);
300 
302 
305  vtkSetMacro(Normalize, bool);
306  vtkGetMacro(Normalize, bool);
308 
309 protected:
311  ~vtkPeriodicDataArray() override;
312 
314 
317  bool AllocateTuples(vtkIdType numTuples);
318  bool ReallocateTuples(vtkIdType numTuples);
320 
324  virtual void Transform(Scalar* tuple) const = 0;
325 
329  bool ComputeScalarRange(double* range) override;
330 
334  bool ComputeVectorRange(double range[2]) override;
335 
339  virtual void ComputePeriodicRange();
340 
344  void InvalidateRange();
345 
346  bool Normalize; // If transformed vector must be normalized
347 
348 private:
350  void operator=(const vtkPeriodicDataArray&) = delete;
351 
352  friend class vtkGenericDataArray<vtkPeriodicDataArray<Scalar>, Scalar>;
353 
354  Scalar* TempScalarArray; // Temporary array used by GetTypedTuple methods
355  double* TempDoubleArray; // Temporary array used by GetTuple vethods
356  vtkIdType TempTupleIdx; // Location of currently stored Temp Tuple to use as cache
357  vtkAOSDataArrayTemplate<Scalar>* Data; // Original data
358 
359  bool InvalidRange;
360  double PeriodicRange[6]; // Transformed periodic range
361 };
362 
363 #include "vtkPeriodicDataArray.txx"
364 
365 #endif // vtkPeriodicDataArray_h
366 // VTK-HeaderTest-Exclude: vtkPeriodicDataArray.h
vtkIdType InsertNextValue(Scalar v)
Read only container, not supported.
void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, vtkAbstractArray *source) override
Read only container, not supported.
void RemoveFirstTuple() override
Read only container, not supported.
virtual void Transform(Scalar *tuple) const =0
Transform the provided tuple.
Abstract superclass for all arrays.
vtkIdType LookupTypedValue(Scalar value) override
Not implemented.
void DeepCopy(vtkAbstractArray *aa) override
Read only container, not supported.
void InsertValue(vtkIdType idx, Scalar v)
Read only container, not supported.
virtual void ComputePeriodicRange()
Update the transformed periodic range.
ValueType GetTypedComponent(vtkIdType tupleIdx, int compIdx) const
Return the requested component of the specified tuple.
bool AllocateTuples(vtkIdType numTuples)
Read only container, not supported.
vtkTemplateTypeMacro(vtkPeriodicDataArray< Scalar >, GenericBase)
vtkIdType LookupValue(vtkVariant value) override
Not implemented.
void SetTuple(vtkIdType i, vtkIdType j, vtkAbstractArray *source) override
Read only container, not supported.
void InvalidateRange()
Set the invalid range flag to false.
ValueType GetValue(vtkIdType idx) const
Get value at index idx.
Superclass::ValueType ValueType
int vtkIdType
Definition: vtkType.h:338
Base interface for all typed vtkDataArray subclasses.
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph *>::edge_descriptor e, vtkGraph *)
A atomic type representing the union of many types.
Definition: vtkVariant.h:65
void SetTypedTuple(vtkIdType i, const Scalar *t)
Read only container, not supported.
vtkVariant GetVariantValue(vtkIdType idx) override
Not implemented.
vtkIdType InsertNextTuple(vtkIdType j, vtkAbstractArray *source) override
Read only container, error.
void Squeeze() override
No effect.
int vtkTypeBool
Definition: vtkABI.h:69
void Initialize() override
Initialize array with zero values.
void SetNumberOfTuples(vtkIdType number) override
Read only container, not supported.
void InsertTypedTuple(vtkIdType i, const Scalar *t)
Read only container, not supported.
void GetTypedTuple(vtkIdType idx, Scalar *t) const
Copy tuple value at location idx into provided array.
Map native an Array into an angulat periodic array.
void InterpolateTuple(vtkIdType i, vtkIdList *ptIndices, vtkAbstractArray *source, double *weights) override
Read only container, not supported.
void ClearLookup() override
Not implemented.
a simple class to control print indentation
Definition: vtkIndent.h:33
list of point or cell ids
Definition: vtkIdList.h:30
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:49
void InsertVariantValue(vtkIdType idx, vtkVariant value) override
Read only container, not supported.
void SetTypedComponent(vtkIdType t, int c, Scalar v)
Read only container, not supported.
unsigned long GetActualMemorySize() const override
Return the memory in kilobytes consumed by this data array.
Abstract superclass to iterate over elements in an vtkAbstractArray.
double * GetTuple(vtkIdType i) override
Return tuple at location i.
vtkTypeBool Allocate(vtkIdType sz, vtkIdType ext) override
Read only container, not supported.
#define VTK_NEWINSTANCE
void InitializeArray(vtkAOSDataArrayTemplate< Scalar > *inputData)
Initialize the mapped array with the original input data array.
void InsertTuple(vtkIdType i, vtkIdType j, vtkAbstractArray *source) override
Read only container, not supported.
bool ComputeScalarRange(double *range) override
Get the transformed range by components.
void RemoveTuple(vtkIdType id) override
Read only container, not supported.
bool ReallocateTuples(vtkIdType numTuples)
Read only container, not supported.
~vtkPeriodicDataArray() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void RemoveLastTuple() override
Read only container, not supported.
vtkArrayIterator * NewIterator() override
Not implemented.
vtkTypeBool Resize(vtkIdType numTuples) override
Read only container, not supported.
ValueType & GetValueReference(vtkIdType idx)
Get value at index idx as reference.
void SetVariantValue(vtkIdType idx, vtkVariant value) override
Read only container, not supported.
void GetTuples(vtkIdList *ptIds, vtkAbstractArray *output) override
Copy tuples values, selected by ptIds into provided array.
void SetValue(vtkIdType idx, Scalar value)
Read only container, not supported.
bool ComputeVectorRange(double range[2]) override
Get the transformed range on all components.
vtkIdType InsertNextTypedTuple(const Scalar *t)
Read only container, not supported.