31 #ifndef vtkAOSDataArrayTemplate_h 32 #define vtkAOSDataArrayTemplate_h 34 #include "vtkCommonCoreModule.h" 40 template <
class ValueTypeT>
49 typedef typename Superclass::ValueType
ValueType;
65 return this->Buffer->GetBuffer()[valueIdx];
73 this->Buffer->GetBuffer()[valueIdx] =
value;
83 std::copy(this->Buffer->GetBuffer() + valueIdx,
96 std::copy(tuple, tuple + this->NumberOfComponents,
97 this->Buffer->GetBuffer() + valueIdx);
106 return this->Buffer->GetBuffer()[this->NumberOfComponents*tupleIdx + comp];
115 const vtkIdType valueIdx = tupleIdx * this->NumberOfComponents + comp;
175 int deleteMethod) VTK_OVERRIDE;
185 { this->Superclass::SetTuple(dstTupleIdx, srcTupleIdx,
source); }
192 { this->Superclass::InsertTuple(dstTupleIdx, srcTupleIdx,
source); }
194 double value) VTK_OVERRIDE;
201 {
return this->Superclass::InsertNextTuple(srcTupleIdx,
source); }
238 switch (
source->GetArrayType())
241 if (vtkDataTypesCompare(
source->GetDataType(),
255 bool HasStandardMemoryLayout() VTK_OVERRIDE {
return true; }
263 VTK_LEGACY(
void GetTupleValue(
vtkIdType tupleIdx, ValueType *tuple));
264 VTK_LEGACY(
void SetTupleValue(
vtkIdType tupleIdx,
const ValueType *tuple));
265 VTK_LEGACY(
void InsertTupleValue(
vtkIdType tupleIdx,
const ValueType *tuple));
266 VTK_LEGACY(
vtkIdType InsertNextTupleValue(
const ValueType *tuple));
276 { this->Superclass::InsertTuples(dstIds, srcIds,
source); }
286 bool AllocateTuples(
vtkIdType numTuples);
292 bool ReallocateTuples(
vtkIdType numTuples);
311 #define vtkCreateWrappedArrayInterface(T) \ 313 void GetTypedTuple(vtkIdType i, T* tuple); \ 314 void SetTypedTuple(vtkIdType i, const T* tuple); \ 315 void InsertTypedTuple(vtkIdType i, const T* tuple); \ 316 vtkIdType InsertNextTypedTuple(const T* tuple); \ 317 T GetValue(vtkIdType id); \ 318 void SetValue(vtkIdType id, T value); \ 319 void SetNumberOfValues(vtkIdType number); \ 320 void InsertValue(vtkIdType id, T f); \ 321 vtkIdType InsertNextValue(T f); \ 322 T *GetValueRange(int comp); \ 323 T *GetValueRange(); \ 324 T* WritePointer(vtkIdType id, vtkIdType number); \ 325 T* GetPointer(vtkIdType id) 337 #endif // header guard 343 #ifdef VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATING 344 #define VTK_AOS_DATA_ARRAY_TEMPLATE_INSTANTIATE(T) \ 345 template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate< T > 346 #elif defined(VTK_USE_EXTERN_TEMPLATE) 347 #ifndef VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN 348 #define VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN 350 #pragma warning (push) 353 #pragma warning (disable: 4910) // extern and dllexport incompatible 358 #pragma warning (pop) 360 #endif // VTK_AOS_DATA_ARRAY_TEMPLATE_EXTERN 363 #elif defined(_MSC_VER) && !defined(VTK_BUILD_SHARED_LIBS) 364 #pragma warning (push) 367 #pragma warning (disable: 4091) 370 #pragma warning (disable: 4231) 383 #pragma warning (disable: 4910) // extern and dllexport incompatible 390 #pragma warning (pop) void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
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...
virtual void ShallowCopy(vtkDataArray *other)
Create a shallow copy of other into this, if possible.
vtkIdType InsertNextTuple(vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple from srcTupleIdx in the source array at the end of this array.
Abstract superclass for all arrays.
ValueType * GetPointer(vtkIdType valueIdx)
Default implementation raises a runtime error.
void SetTypedComponent(vtkIdType tupleIdx, int comp, ValueType value)
Set component comp of the tuple at tupleIdx to value.
vtkTemplateTypeMacro(SelfType, vtkDataArray) enum
Compile time access to the VTK type identifier.
VTK_NEWINSTANCE vtkArrayIterator * NewIterator() override
Subclasses must override this method and provide the right kind of templated vtkArrayIteratorTemplate...
Base interface for all typed vtkDataArray subclasses.
void SetVoidArray(void *, vtkIdType, int) override
Default implementation raises a runtime error.
vtkAOSDataArrayTemplate< ValueTypeT > SelfType
virtual void Fill(double value)
Fill all values of a data array with a specified value.
void GetTypedTuple(vtkIdType tupleIdx, ValueType *tuple) const
Copy the tuple at tupleIdx into tuple.
void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple at srcTupleIdx in the source array into this array at dstTupleIdx.
internal storage class used by vtkSOADataArrayTemplate, vtkAOSDataArrayTemplate, and others...
double * GetTuple(vtkIdType tupleIdx) override
Get the data tuple at tupleIdx.
#define vtkExternTemplateMacro(decl)
A macro to declare extern templates for all numerical types.
Array-Of-Structs implementation of vtkGenericDataArray.
list of point or cell ids
ValueType GetValue(vtkIdType valueIdx) const
Get the value at valueIdx.
abstract superclass for arrays of numeric data
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
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...
virtual void FillValue(ValueType value)
Set all the values in array to value.
void * WriteVoidPointer(vtkIdType valueIdx, vtkIdType numValues) override
Default implementation raises a runtime error.
ValueType * WritePointer(vtkIdType valueIdx, vtkIdType numValues)
Default implementation raises a runtime error.
Abstract superclass to iterate over elements in an vtkAbstractArray.
void DataChanged() override
Tell the array explicitly that the data has changed.
#define vtkInstantiateTemplateMacro(decl)
A macro to instantiate a template over all numerical types.
void * GetVoidPointer(vtkIdType valueIdx) override
Default implementation raises a runtime error.
int GetArrayType() override
Method for type-checking in FastDownCast implementations.
void save(Archiver &ar, const vtkUnicodeString &str, const unsigned int vtkNotUsed(version))
vtkArrayDownCast_TemplateFastCastMacro(vtkTypedDataArray) template< class Scalar > inline typename vtkTypedDataArray< Scalar >
boost::graph_traits< vtkGraph *>::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
void DataElementChanged(vtkIdType)
Tell the array explicitly that a single data element has changed.
virtual void FillTypedComponent(int compIdx, ValueType value)
Set component comp of all tuples to value.
static vtkAOSDataArrayTemplate< ValueType > * FastDownCast(vtkAbstractArray *source)
Perform a fast, safe cast from a vtkAbstractArray to a vtkAOSDataArrayTemplate.
ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
Get component comp of the tuple at tupleIdx.
void SetTypedTuple(vtkIdType tupleIdx, const ValueType *tuple)
Set this array's tuple at tupleIdx to the values in tuple.
void InsertComponent(vtkIdType tupleIdx, int compIdx, double value) override
Insert value at the location specified by tupleIdx and compIdx.
ValueType * Iterator
Legacy support for array-of-structs value iteration.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
vtkIdType InsertNextTuple(vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple from srcTupleIdx in the source array at the end of this array.
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 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...
void InsertTuple(vtkIdType dstTupleIdx, vtkIdType srcTupleIdx, vtkAbstractArray *source) override
Insert the tuple at srcTupleIdx in the source array into this array at dstTupleIdx.
Template defining traits of native types used by VTK.