VTK  9.7.20260718
vtkAOSDataArrayTemplate.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
21
22#ifndef vtkAOSDataArrayTemplate_h
23#define vtkAOSDataArrayTemplate_h
24
25#include "vtkBuffer.h" // For storage buffer.
26#include "vtkBuild.h" // For VTK_BUILD_SHARED_LIBS
27#include "vtkCommonCoreModule.h" // For export macro
28#include "vtkCompiler.h" // for VTK_USE_EXTERN_TEMPLATE
29#include "vtkDataArrayMeta.h" // For vtkDataArrayMeta::ComponentType
30#include "vtkGenericDataArray.h"
31
32namespace vtk
33{
34namespace detail
35{
36VTK_ABI_NAMESPACE_BEGIN
37template <typename ArrayType, ComponentIdType TupleSize>
38struct TupleRange;
39template <typename ArrayType, ComponentIdType TupleSize,
40 typename ForceValueTypeForVtkDataArray = double>
41struct ValueRange;
42VTK_ABI_NAMESPACE_END
43} // namespace detail
44} // namespace vtk
45
46// The export macro below makes no sense, but is necessary for older compilers
47// when we export instantiations of this class from vtkCommonCore.
48VTK_ABI_NAMESPACE_BEGIN
49template <class ValueTypeT>
50class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate
51#ifndef __VTK_WRAP__
52 : public vtkGenericDataArray<vtkAOSDataArrayTemplate<ValueTypeT>, ValueTypeT,
53 vtkArrayTypes::VTK_AOS_DATA_ARRAY>
54{
55 using GenericDataArrayType = vtkGenericDataArray<vtkAOSDataArrayTemplate<ValueTypeT>, ValueTypeT,
57#else // Fake the superclass for the wrappers.
58 : public vtkDataArray
59{
60 using GenericDataArrayType = vtkDataArray;
61#endif
62
63 // Friendship required by vtkDataArray(Value/Tuple)Range so that it can access the memory buffer
64 // which is required to avoid accessing raw pointers that might no longer be valid.
65 template <typename ArrayType, vtk::ComponentIdType TupleSize>
67 template <typename ArrayType, vtk::ComponentIdType TupleSize,
68 typename ForceValueTypeForVtkDataArray>
70
71public:
73 vtkTemplateTypeMacro(SelfType, GenericDataArrayType);
74#ifndef __VTK_WRAP__
75 using typename Superclass::ArrayTypeTag;
76 using typename Superclass::DataTypeTag;
77 using typename Superclass::ValueType;
78#else
79 using ValueType = ValueTypeT;
80#endif
81
89
91
96 VTK_EXPECTS(0 <= valueIdx && valueIdx < GetNumberOfValues())
97 {
98 return this->Buffer->GetBuffer()[valueIdx];
99 }
100
104 void SetValue(vtkIdType valueIdx, ValueType value)
105 VTK_EXPECTS(0 <= valueIdx && valueIdx < GetNumberOfValues())
106 {
107 this->Buffer->GetBuffer()[valueIdx] = value;
108 }
109
111
114 void GetTypedTuple(vtkIdType tupleIdx, ValueType* tuple) const
115 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
116 {
117 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
118 std::copy(this->Buffer->GetBuffer() + valueIdx,
119 this->Buffer->GetBuffer() + valueIdx + this->NumberOfComponents, tuple);
120 }
121
122
124
127 void SetTypedTuple(vtkIdType tupleIdx, const ValueType* tuple)
128 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples())
129 {
130 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
131 std::copy(tuple, tuple + this->NumberOfComponents, this->Buffer->GetBuffer() + valueIdx);
132 }
133
134
135 void GetIntegerTuple(vtkIdType tupleIdx, vtkTypeInt64* tuple)
136 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
137 {
138 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
139 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
140 {
141 tuple[ii] = static_cast<vtkTypeInt64>((this->Buffer->GetBuffer())[valueIdx + ii]);
142 }
143 }
144
145 void SetIntegerTuple(vtkIdType tupleIdx, vtkTypeInt64* tuple)
146 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
147 {
148 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
149 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
150 {
151 this->Buffer->GetBuffer()[valueIdx + ii] = static_cast<ValueType>(tuple[ii]);
152 }
153 }
154
155 void GetUnsignedTuple(vtkIdType tupleIdx, vtkTypeUInt64* tuple)
156 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
157 {
158 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
159 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
160 {
161 tuple[ii] = static_cast<vtkTypeUInt64>((this->Buffer->GetBuffer())[valueIdx + ii]);
162 }
163 }
164
165 void SetUnsignedTuple(vtkIdType tupleIdx, vtkTypeUInt64* tuple)
166 VTK_EXPECTS(0 <= tupleIdx && tupleIdx < GetNumberOfTuples()) override
167 {
168 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents;
169 for (vtkIdType ii = 0; ii < this->NumberOfComponents; ++ii)
170 {
171 this->Buffer->GetBuffer()[valueIdx + ii] = static_cast<ValueType>(tuple[ii]);
172 }
173 }
174
178 ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
179 VTK_EXPECTS(0 <= tupleIdx && GetNumberOfComponents() * tupleIdx + comp < GetNumberOfValues())
180 VTK_EXPECTS(0 <= comp && comp < GetNumberOfComponents())
181 {
182 return this->Buffer->GetBuffer()[this->NumberOfComponents * tupleIdx + comp];
183 }
184
186
189 void SetTypedComponent(vtkIdType tupleIdx, int comp, ValueType value)
190 VTK_EXPECTS(0 <= tupleIdx && GetNumberOfComponents() * tupleIdx + comp < GetNumberOfValues())
191 VTK_EXPECTS(0 <= comp && comp < GetNumberOfComponents())
192 {
193 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents + comp;
194 this->SetValue(valueIdx, value);
195 }
196
197
199
202#ifdef __VTK_WRAP__
203 // Defined in vtkGenericDataArray, not vtkDataArray
204 virtual void FillTypedComponent(int compIdx, ValueType value);
205#else
206 void FillTypedComponent(int compIdx, ValueType value) override;
207#endif
209
211
214#ifdef __VTK_WRAP__
215 // Defined in vtkGenericDataArray, not vtkDataArray
216 virtual void FillValue(ValueType value);
217#else
218 void FillValue(ValueType value) override;
219#endif
220 void Fill(double value) override;
222
224
230 VTK_DEPRECATED_IN_9_7_0("Use SetNumberOfValues() and GetPointer() on AOS arrays")
231 void* WriteVoidPointer(vtkIdType valueIdx, vtkIdType numValues) override;
233
235
243 void* GetVoidPointer(vtkIdType valueIdx) override;
245
251#ifdef __VTK_WRAP__
252 vtkAbstractBuffer* GetBuffer() { return this->Buffer; }
253#else
255#endif // __VTK_WRAP__
256
257#ifndef __VTK_WRAP__
264 void SetBuffer(vtkBuffer<ValueType>* buffer, bool updateMaxId = false);
265#endif
266
274 void SetBuffer(vtkAbstractBuffer* buffer, bool updateMaxId = false);
275
277
291 void SetArray(VTK_ZEROCOPY ValueType* array, vtkIdType size, int save, int deleteMethod);
293 void SetVoidArray(void* array, vtkIdType size, int save) override;
294 void SetVoidArray(void* array, vtkIdType size, int save, int deleteMethod) override;
296
303 void SetArrayFreeFunction(void (*callback)(void*)) override;
304
305 // Overridden for optimized implementations:
306 void SetTuple(vtkIdType tupleIdx, const float* tuple) override;
307 void SetTuple(vtkIdType tupleIdx, const double* tuple) override;
308 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
309 // using Superclass::SetTuple;
310 void SetTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray* source) override
311 {
312 this->Superclass::SetTuple(dstTupleIdx, srcTupleIdx, source);
313 }
314 void InsertTuple(vtkIdType tupleIdx, const float* source) override;
315 void InsertTuple(vtkIdType tupleIdx, const double* source) override;
316 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
317 // using Superclass::InsertTuple;
318 void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray* source) override
319 {
320 this->Superclass::InsertTuple(dstTupleIdx, srcTupleIdx, source);
321 }
322 void InsertComponent(vtkIdType tupleIdx, int compIdx, double value) override;
323 vtkIdType InsertNextTuple(const float* tuple) override;
324 vtkIdType InsertNextTuple(const double* tuple) override;
325 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
326 // using Superclass::InsertNextTuple;
328 {
329 return this->Superclass::InsertNextTuple(srcTupleIdx, source);
330 }
331 void GetTuple(vtkIdType tupleIdx, double* tuple) override;
332 double* GetTuple(vtkIdType tupleIdx) override;
333
344 VTK_DEPRECATED_IN_9_7_0("Use DataChanged() instead")
346
352 Iterator Begin() { return Iterator(this->GetPointer(0)); }
353 Iterator End() { return Iterator(this->GetPointer(this->MaxId + 1)); }
354
355 VTK_DEPRECATED_IN_9_7_0("Use vtk::DataArrayValueRange, or the array directly")
357 bool HasStandardMemoryLayout() const override { return true; }
358 void ShallowCopy(vtkDataArray* other) override;
360
361 // Reimplemented for efficiency:
363 vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkAbstractArray* source) override;
364 // MSVC doesn't like 'using' here (error C2487). Just forward instead:
365 // using Superclass::InsertTuples;
366 void InsertTuples(vtkIdList* dstIds, vtkIdList* srcIds, vtkAbstractArray* source) override
367 {
368 this->Superclass::InsertTuples(dstIds, srcIds, source);
369 }
371 vtkIdType dstStart, vtkIdList* srcIds, vtkAbstractArray* source) override
372 {
373 this->Superclass::InsertTuplesStartingAt(dstStart, srcIds, source);
374 }
375
376#ifdef __VTK_WRAP__
377 // Add APIs inherited from vtkGenericDataArray, which is excluded from wrapping
379#endif
380
381protected:
384
389 VTK_DEPRECATED_IN_9_7_0("No longer needed")
390 bool AllocateTuples(vtkIdType numTuples);
391
397
399
400private:
402 void operator=(const vtkAOSDataArrayTemplate&) = delete;
403
404 friend class vtkGenericDataArray<SelfType, ValueType, ArrayTypeTag::value>;
405};
406
407// Declare vtkArrayDownCast implementations for AoS containers:
409
410VTK_ABI_NAMESPACE_END
411
412// This macro is used by the subclasses to create dummy
413// declarations for these functions such that the wrapper
414// can see them.
415#define vtkCreateWrappedArrayInterface(T) \
416 vtkCreateWrappedArrayReadInterface(T); \
417 vtkCreateWrappedArrayWriteInterface(T); \
418 T* WritePointer(vtkIdType id, vtkIdType number); \
419 T* GetPointer(vtkIdType id); \
420 void SetArray(VTK_ZEROCOPY T* array, vtkIdType size, int save); \
421 void SetArray(VTK_ZEROCOPY T* array, vtkIdType size, int save, int deleteMethod); \
422 vtkAbstractBuffer* GetBuffer(); \
423 void SetBuffer(vtkAbstractBuffer* buffer, bool updateMaxId = false)
424
425#endif // header guard
426
427// This portion must be OUTSIDE the include blockers. This is used to tell
428// libraries other than vtkCommonCore that instantiations of
429// vtkAOSDataArrayTemplate can be found externally. This prevents each library
430// from instantiating these on their own.
431#ifdef VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATING
432#define VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATE(T) \
433 namespace vtkDataArrayPrivate \
434 { \
435 VTK_ABI_NAMESPACE_BEGIN \
436 VTK_INSTANTIATE_VALUERANGE_ARRAYTYPE(vtkAOSDataArrayTemplate<T>, double); \
437 VTK_ABI_NAMESPACE_END \
438 } \
439 VTK_ABI_NAMESPACE_BEGIN \
440 template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate<T>; \
441 VTK_ABI_NAMESPACE_END
442// We only provide these specializations for the 64-bit integer types, since
443// other types can reuse the double-precision mechanism in
444// vtkDataArray::GetRange without losing precision.
445#define VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATE_VALUERANGE(T) \
446 namespace vtkDataArrayPrivate \
447 { \
448 VTK_ABI_NAMESPACE_BEGIN \
449 VTK_INSTANTIATE_VALUERANGE_ARRAYTYPE(vtkAOSDataArrayTemplate<T>, T); \
450 VTK_ABI_NAMESPACE_END \
451 }
452// MinGW GCC does not reliably export inline member functions (such as IsTypeOf
453// defined by vtkTemplateTypeMacro above) when using template class __declspec(dllexport)
454// with extern template. This guard is applied here rather than in other VTK places
455// with #elif defined(VTK_USE_EXTERN_TEMPLATE) because only these three DataArrayTemplate
456// classes combine extern template with vtkTemplateTypeMacro inline functions in the class
457// body; other VTK template classes using this pattern (e.g. vtkConstantArray,
458// vtkAffineArray) use vtkImplicitArrayTypeMacro instead and were not observed with this
459// MinGW issue.
460#elif defined(VTK_USE_EXTERN_TEMPLATE) && !defined(__MINGW32__)
461#ifndef VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
462#define VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
463#ifdef _MSC_VER
464#pragma warning(push)
465// The following is needed when the vtkAOSDataArrayTemplate is declared
466// dllexport and is used from another class in vtkCommonCore
467#pragma warning(disable : 4910) // extern and dllexport incompatible
468#endif
469VTK_ABI_NAMESPACE_BEGIN
470vtkExternTemplateMacro(extern template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate);
471VTK_ABI_NAMESPACE_END
472
473namespace vtkDataArrayPrivate
474{
475VTK_ABI_NAMESPACE_BEGIN
476
477// These are instantiated in vtkGenericDataArrayValueRange${i}.cxx
482// These are instantiated in vtkFloatArray.cxx, vtkDoubleArray.cxx, etc
496
497VTK_ABI_NAMESPACE_END
498} // namespace vtkDataArrayPrivate
499
500#ifdef _MSC_VER
501#pragma warning(pop)
502#endif
503#endif // VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
504
505// The following clause is only for MSVC
506#elif defined(_MSC_VER) && !defined(VTK_BUILD_SHARED_LIBS)
507#pragma warning(push)
508
509// C4091: 'extern ' : ignored on left of 'int' when no variable is declared
510#pragma warning(disable : 4091)
511
512// Compiler-specific extension warning.
513#pragma warning(disable : 4231)
514
515// We need to disable warning 4910 and do an extern dllexport
516// anyway. When deriving vtkCharArray and other types from an
517// instantiation of this template the compiler does an explicit
518// instantiation of the base class. From outside the vtkCommon
519// library we block this using an extern dllimport instantiation.
520// For classes inside vtkCommon we should be able to just do an
521// extern instantiation, but VS complains about missing
522// definitions. We cannot do an extern dllimport inside vtkCommon
523// since the symbols are local to the dll. An extern dllexport
524// seems to be the only way to convince VS to do the right
525// thing, so we just disable the warning.
526#pragma warning(disable : 4910) // extern and dllexport incompatible
527
528// Use an "extern explicit instantiation" to give the class a DLL
529// interface. This is a compiler-specific extension.
530VTK_ABI_NAMESPACE_BEGIN
531vtkInstantiateTemplateMacro(extern template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate);
532VTK_ABI_NAMESPACE_END
533
534#pragma warning(pop)
535
536#endif
537
538// VTK-HeaderTest-Exclude: vtkAOSDataArrayTemplate.h
Array-Of-Structs implementation of vtkGenericDataArray.
void GetIntegerTuple(vtkIdType tupleIdx, vtkTypeInt64 *tuple) override
Get/set the data at tupleIdx by filling in a user-provided array of integers.
void SetVoidArray(void *array, vtkIdType size, int save) override
This method lets the user specify data to be held by the array.
void SetArray(ValueType *array, vtkIdType size, int save)
This method lets the user specify data to be held by the array.
void SetBuffer(vtkAbstractBuffer *buffer, bool updateMaxId=false)
Use this API to pass an existing vtkAbstractBuffer to this instance.
void SetTuple(vtkIdType tupleIdx, const float *tuple) override
Set the data tuple at tupleIdx.
void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple at srcTupleIdx in the source array into this array at dstTupleIdx.
void SetTuple(vtkIdType tupleIdx, const double *tuple) override
Set the data tuple at tupleIdx.
void SetTypedTuple(vtkIdType tupleIdx, const ValueType *tuple)
Set this array's tuple at tupleIdx to the values in tuple.
void InsertTuples(vtkIdType dstStart, vtkIdType n, vtkIdType srcStart, vtkAbstractArray *source) override
Copy n consecutive tuples starting at srcStart from the source array to this array,...
void InsertTuplesStartingAt(vtkIdType dstStart, vtkIdList *srcIds, vtkAbstractArray *source) override
Copy the tuples indexed in srcIds from the source array to the tuple locations starting at index dstS...
void SetTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Set the tuple at dstTupleIdx in this array to the tuple at srcTupleIdx in the source array.
void SetBuffer(vtkBuffer< ValueType > *buffer, bool updateMaxId=false)
Use this API to pass an existing vtkBuffer to this instance.
void SetVoidArray(void *array, vtkIdType size, int save, int deleteMethod) override
This method lets the user specify data to be held by the array.
ValueType * WritePointer(vtkIdType valueIdx, vtkIdType numValues)
Get the address of a particular data index.
void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, vtkAbstractArray *source) override
Copy the tuples indexed in srcIds from the source array to the tuple locations indexed by dstIds in t...
vtkAOSDataArrayTemplate< ValueTypeT > SelfType
void GetUnsignedTuple(vtkIdType tupleIdx, vtkTypeUInt64 *tuple) override
Get/set the data at tupleIdx by filling in a user-provided array of unsigned integers.
void FillValue(ValueType value) override
vtkIdType InsertNextTuple(vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple from srcTupleIdx in the source array at the end of this array.
void InsertTuple(vtkIdType tupleIdx, const float *source) override
Insert the data tuple at tupleIdx.
void SetTypedComponent(vtkIdType tupleIdx, int comp, ValueType value)
Set component comp of the tuple at tupleIdx to value.
void * WriteVoidPointer(vtkIdType valueIdx, vtkIdType numValues) override
void SetArray(ValueType *array, vtkIdType size, int save, int deleteMethod)
This method lets the user specify data to be held by the array.
void SetArrayFreeFunction(void(*callback)(void *)) override
This method allows the user to specify a custom free function to be called when the array is dealloca...
vtkArrayIterator * NewIterator() override
bool ReallocateTuples(vtkIdType numTuples)
void GetTuple(vtkIdType tupleIdx, double *tuple) override
Get the data tuple at tupleIdx by filling in a user-provided array, Make sure that your array is larg...
void InsertTuple(vtkIdType tupleIdx, const double *source) override
Insert the data tuple at tupleIdx.
std::integral_constant< int, vtkArrayTypes::VTK_ABSTRACT_ARRAY > ArrayTypeTag
void * GetVoidPointer(vtkIdType valueIdx) override
vtkIdType InsertNextTuple(const float *tuple) override
Insert the data tuple at the end of the array and return the tuple index at which the data was insert...
void FillTypedComponent(int compIdx, ValueType value) override
Set component comp of all tuples to value.
ValueType * GetPointer(vtkIdType valueIdx)
static vtkAOSDataArrayTemplate * New()
void SetIntegerTuple(vtkIdType tupleIdx, vtkTypeInt64 *tuple) override
Get/set the data at tupleIdx by filling in a user-provided array of integers.
double * GetTuple(vtkIdType tupleIdx) override
Get the data tuple at tupleIdx.
void Fill(double value) override
Set all the values in array to value.
void InsertComponent(vtkIdType tupleIdx, int compIdx, double value) override
Insert value at the location specified by tupleIdx and compIdx.
vtkTemplateTypeMacro(SelfType, GenericDataArrayType)
void SetUnsignedTuple(vtkIdType tupleIdx, vtkTypeUInt64 *tuple) override
Get/set the data at tupleIdx by filling in a user-provided array of unsigned integers.
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
~vtkAOSDataArrayTemplate() override
void ShallowCopy(vtkDataArray *other) override
Create a shallow copy of other into this, if possible.
void GetTypedTuple(vtkIdType tupleIdx, ValueType *tuple) const
Copy the tuple at tupleIdx into tuple.
bool AllocateTuples(vtkIdType numTuples)
ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
Get component comp of the tuple at tupleIdx.
ValueType GetValue(vtkIdType valueIdx) const
Get the value at valueIdx.
ValueType * Iterator
Legacy support for array-of-structs value iteration.
vtkIdType InsertNextTuple(const double *tuple) override
Insert the data tuple at the end of the array and return the tuple index at which the data was insert...
Abstract superclass for all arrays.
int GetNumberOfComponents() const
Set/Get the dimension (n) of the components.
vtkIdType GetNumberOfTuples() const
Get the number of complete tuples (a component group) in the array.
virtual void SetTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source)=0
Set the tuple at dstTupleIdx in this array to the tuple at srcTupleIdx in the source array.
virtual void InsertTuples(vtkIdList *dstIds, vtkIdList *srcIds, vtkAbstractArray *source)=0
Copy the tuples indexed in srcIds from the source array to the tuple locations indexed by dstIds in t...
virtual void InsertTuplesStartingAt(vtkIdType dstStart, vtkIdList *srcIds, vtkAbstractArray *source)=0
Copy the tuples indexed in srcIds from the source array to the tuple locations starting at index dstS...
std::integral_constant< int, VTK_OPAQUE > DataTypeTag
std::integral_constant< int, vtkArrayTypes::VTK_ABSTRACT_ARRAY > ArrayTypeTag
virtual void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source)=0
Insert the tuple at srcTupleIdx in the source array into this array at dstTupleIdx.
vtkIdType GetNumberOfValues() const
Get the total number of values in the array.
virtual void ShallowCopy(vtkAbstractArray *src)
This method will copy the data from the source array to this array.
virtual vtkIdType InsertNextTuple(vtkIdType srcTupleIdx, vtkAbstractArray *source)=0
Insert the tuple from srcTupleIdx in the source array at the end of this array.
Abstract base class for vtkBuffer providing buffer protocol support.
Abstract superclass to iterate over elements in an vtkAbstractArray.
internal storage class used by vtkSOADataArrayTemplate, vtkAOSDataArrayTemplate, and others.
Definition vtkBuffer.h:32
void DataChanged() override
Tell the array explicitly that the data has changed.
list of point or cell ids
Definition vtkIdList.h:135
Specialization of tuple ranges and iterators for vtkAOSDataArrayTemplate.
int ComponentIdType
#define vtkArrayDownCast_TemplateFastCastMacro(ArrayT)
Same as vtkArrayDownCast_FastCastMacro, but treats ArrayT as a single-parameter template (the paramet...
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
#define vtkDataArray
This file contains a variety of metaprogramming constructs for working with vtkDataArrays.
#define VTK_DEPRECATED_IN_9_7_0(reason)
#define vtkCreateGenericWrappedArrayInterface(T)
#define VTK_DECLARE_VALUERANGE_ARRAYTYPE(ArrayType, ValueType)
#define vtkExternTemplateMacro(decl)
A macro to declare extern templates for all numerical types.
Definition vtkType.h:458
int vtkIdType
Definition vtkType.h:363
#define vtkInstantiateTemplateMacro(decl)
A macro to instantiate a template over all numerical types.
Definition vtkType.h:411
@ VTK_AOS_DATA_ARRAY
Definition vtkType.h:83
void save(Archiver &ar, const std::string &str, const unsigned int version)
#define VTK_EXPECTS(x)
#define VTK_ZEROCOPY
#define VTK_NEWINSTANCE