Go to the documentation of this file.
34 #ifndef vtkAOSDataArrayTemplate_h
35 #define vtkAOSDataArrayTemplate_h
37 #include "vtkCommonCoreModule.h"
43 template <
class ValueTypeT>
52 typedef typename Superclass::ValueType
ValueType;
67 return this->Buffer->GetBuffer()[valueIdx];
75 this->Buffer->GetBuffer()[valueIdx] =
value;
85 std::copy(this->Buffer->GetBuffer() + valueIdx,
86 this->Buffer->GetBuffer() + valueIdx + this->NumberOfComponents,
98 std::copy(tuple, tuple + this->NumberOfComponents,
99 this->Buffer->GetBuffer() + valueIdx);
108 return this->Buffer->GetBuffer()[this->NumberOfComponents*tupleIdx + comp];
117 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents + comp;
160 int deleteMethod) VTK_OVERRIDE;
196 switch (
source->GetArrayType())
199 if (vtkDataTypesCompare(
source->GetDataType(),
213 bool HasStandardMemoryLayout() VTK_OVERRIDE {
return true; }
234 { this->Superclass::InsertTuples(dstIds, srcIds,
source); }
269 #define vtkCreateWrappedArrayInterface(T) \
271 void GetTypedTuple(vtkIdType i, T* tuple); \
272 void SetTypedTuple(vtkIdType i, const T* tuple); \
273 void InsertTypedTuple(vtkIdType i, const T* tuple); \
274 vtkIdType InsertNextTypedTuple(const T* tuple); \
275 T GetValue(vtkIdType id); \
276 void SetValue(vtkIdType id, T value); \
277 void SetNumberOfValues(vtkIdType number); \
278 void InsertValue(vtkIdType id, T f); \
279 vtkIdType InsertNextValue(T f); \
280 T *GetValueRange(int comp); \
281 T *GetValueRange(); \
282 T* WritePointer(vtkIdType id, vtkIdType number); \
283 T* GetPointer(vtkIdType id)
295 #endif // header guard
301 #ifdef VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATING
302 #define VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATE(T) \
303 template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate< T >
304 #elif defined(VTK_USE_EXTERN_TEMPLATE)
305 #ifndef VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
306 #define VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
308 #pragma warning (push)
311 #pragma warning (disable: 4910) // extern and dllexport incompatible
316 #pragma warning (pop)
318 #endif // VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN
321 #elif defined(_MSC_VER) && !defined(VTK_BUILD_SHARED_LIBS)
322 #pragma warning (push)
325 #pragma warning (disable: 4091)
328 #pragma warning (disable: 4231)
341 #pragma warning (disable: 4910) // extern and dllexport incompatible
348 #pragma warning (pop)
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
Template defining traits of native types used by VTK.
ValueType * WritePointer(vtkIdType valueIdx, vtkIdType numValues)
Get the address of a particular data index.
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 * GetVoidPointer(vtkIdType valueIdx) override
Default implementation raises a runtime error.
void SetArray(ValueType *array, vtkIdType size, int save)
vtkAOSDataArrayTemplate< ValueTypeT > SelfType
void save(Archiver &ar, const vtkUnicodeString &str, const unsigned int vtkNotUsed(version))
void SetVoidArray(void *array, vtkIdType size, int save) override
static vtkAOSDataArrayTemplate * New()
Base interface for all typed vtkDataArray subclasses.
void GetTupleValue(vtkIdType tupleIdx, ValueType *tuple)
ValueType * GetPointer(vtkIdType valueIdx)
Get the address of a particular data index.
abstract superclass for arrays of numeric data
void ShallowCopy(vtkDataArray *other) override
Create a shallow copy of other into this, if possible.
void SetArray(ValueType *array, vtkIdType size, int save, int deleteMethod)
This method lets the user specify data to be held by the array.
void SetTypedComponent(vtkIdType tupleIdx, int comp, ValueType value)
Set component comp of the tuple at tupleIdx to value.
void DataChanged() override
Tell the array explicitly that the data has changed.
void GetTypedTuple(vtkIdType tupleIdx, ValueType *tuple) const
Copy the tuple at tupleIdx into tuple.
void SetTupleValue(vtkIdType tupleIdx, const ValueType *tuple)
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
internal storage class used by vtkSOADataArrayTemplate, vtkAOSDataArrayTemplate, and others.
ValueType GetValue(vtkIdType valueIdx) const
Get the value at valueIdx.
#define vtkExternTemplateMacro(decl)
A macro to declare extern templates for all numerical types.
VTK_NEWINSTANCE vtkArrayIterator * NewIterator() override
Subclasses must override this method and provide the right kind of templated vtkArrayIteratorTemplate...
vtkTemplateTypeMacro(SelfType, vtkDataArray) enum
Compile time access to the VTK type identifier.
list of point or cell ids
~vtkAOSDataArrayTemplate() override
void DataElementChanged(vtkIdType)
Tell the array explicitly that a single data element has changed.
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
int GetArrayType() override
Method for type-checking in FastDownCast implementations.
void SetVoidArray(void *array, vtkIdType size, int save, int deleteMethod) override
Abstract superclass for all arrays.
vtkIdType InsertNextTupleValue(const ValueType *tuple)
#define vtkInstantiateTemplateMacro(decl)
A macro to instantiate a template over all numerical types.
ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
Get component comp of the tuple at tupleIdx.
Abstract superclass to iterate over elements in an vtkAbstractArray.
vtkArrayDownCast_TemplateFastCastMacro(vtkTypedDataArray) template< class Scalar > inline typename vtkTypedDataArray< Scalar >
void InsertTupleValue(vtkIdType tupleIdx, const ValueType *tuple)
void * WriteVoidPointer(vtkIdType valueIdx, vtkIdType numValues) override
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...
static vtkAOSDataArrayTemplate< ValueType > * FastDownCast(vtkAbstractArray *source)
Perform a fast, safe cast from a vtkAbstractArray to a vtkAOSDataArrayTemplate.
Array-Of-Structs implementation of vtkGenericDataArray.
vtkAOSDataArrayTemplate()
void * GetVoidPointer(vtkIdType valueIdx) override
Return a void pointer.
void SetTypedTuple(vtkIdType tupleIdx, const ValueType *tuple)
Set this array's tuple at tupleIdx to the values in tuple.
ValueType * Iterator
Legacy support for array-of-structs value iteration.