31 #ifndef vtkSOADataArrayTemplate_h 32 #define vtkSOADataArrayTemplate_h 34 #include "vtkCommonCoreModule.h" 40 template <
class ValueTypeT>
49 typedef typename Superclass::ValueType
ValueType;
68 this->GetTupleIndexFromValueIndex(valueIdx, tupleIdx, comp);
81 this->GetTupleIndexFromValueIndex(valueIdx, tupleIdx, comp);
91 for (
size_t cc=0; cc < this->Data.size(); cc++)
93 tuple[cc] = this->Data[cc]->GetBuffer()[tupleIdx];
102 for (
size_t cc=0; cc < this->Data.size(); ++cc)
104 this->Data[cc]->GetBuffer()[tupleIdx] = tuple[cc];
113 return this->Data[comp]->GetBuffer()[tupleIdx];
121 this->Data[comp]->GetBuffer()[tupleIdx] =
value;
143 bool updateMaxId =
false,
bool save=
false,
144 int deleteMethod=VTK_DATA_ARRAY_FREE);
150 ValueType* GetComponentArrayPointer(
int comp);
177 switch (
source->GetArrayType())
180 if (vtkDataTypesCompare(
source->GetDataType(),
205 { this->Superclass::InsertTuples(dstIds, srcIds,
source); }
223 std::vector<vtkBuffer<ValueType>*>
Data;
232 inline void GetTupleIndexFromValueIndex(
vtkIdType valueIdx,
235 tupleIdx = static_cast<vtkIdType>(valueIdx *
236 this->NumberOfComponentsReciprocal);
247 #endif // header guard 253 #ifdef VTK_SOA_DATA_ARRAY_TEMPLATE_INSTANTIATING 254 #define VTK_SOA_DATA_ARRAY_TEMPLATE_INSTANTIATE(T) \ 255 template class VTKCOMMONCORE_EXPORT vtkSOADataArrayTemplate< T > 256 #elif defined(VTK_USE_EXTERN_TEMPLATE) 257 #ifndef VTK_SOA_DATA_ARRAY_TEMPLATE_EXTERN 258 #define VTK_SOA_DATA_ARRAY_TEMPLATE_EXTERN 260 #pragma warning (push) 263 #pragma warning (disable: 4910) // extern and dllexport incompatible 268 #pragma warning (pop) 270 #endif // VTK_SOA_DATA_ARRAY_TEMPLATE_EXTERN 273 #elif defined(_MSC_VER) && !defined(VTK_BUILD_SHARED_LIBS) 274 #pragma warning (push) 277 #pragma warning (disable: 4091) 280 #pragma warning (disable: 4231) 293 #pragma warning (disable: 4910) // extern and dllexport incompatible 300 #pragma warning (pop) Struct-Of-Arrays implementation of vtkGenericDataArray.
vtkBuffer< ValueType > * AoSCopy
ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
Get component comp of the tuple at tupleIdx.
virtual void ShallowCopy(vtkDataArray *other)
Create a shallow copy of other into this, if possible.
ValueType GetTypedComponent(vtkIdType tupleIdx, int compIdx) const
Get component compIdx of the tuple at tupleIdx.
ValueType GetValue(vtkIdType valueIdx) const
Get the value at valueIdx.
Abstract superclass for all arrays.
vtkTemplateTypeMacro(SelfType, vtkDataArray) enum
Compile time access to the VTK type identifier.
static vtkSOADataArrayTemplate< ValueType > * FastDownCast(vtkAbstractArray *source)
Perform a fast, safe cast from a vtkAbstractArray to a vtkDataArray.
void SetTypedComponent(vtkIdType tupleIdx, int compIdx, ValueType value)
Set component compIdx of the tuple at tupleIdx to value.
Base interface for all typed vtkDataArray subclasses.
void SetTypedTuple(vtkIdType tupleIdx, const ValueType *tuple)
Set this array's tuple at tupleIdx to the values in tuple.
double NumberOfComponentsReciprocal
#define vtkExternTemplateMacro(decl)
A macro to declare extern templates for all numerical types.
list of point or cell ids
bool AllocateTuples(vtkIdType numTuples)
Allocate space for numTuples.
vtkSOADataArrayTemplate< ValueTypeT > SelfType
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
abstract superclass for arrays of numeric data
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...
Abstract superclass to iterate over elements in an vtkAbstractArray.
vtkArrayIterator * NewIterator() override
Subclasses must override this method and provide the right kind of templated vtkArrayIteratorTemplate...
#define vtkInstantiateTemplateMacro(decl)
A macro to instantiate a template over all numerical types.
void * GetVoidPointer(vtkIdType valueIdx) override
Default implementation raises a runtime error.
void save(Archiver &ar, const vtkUnicodeString &str, const unsigned int vtkNotUsed(version))
vtkArrayDownCast_TemplateFastCastMacro(vtkTypedDataArray) template< class Scalar > inline typename vtkTypedDataArray< Scalar >
void GetTypedTuple(vtkIdType tupleIdx, ValueType *tuple) const
Copy the tuple at tupleIdx into tuple.
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
std::vector< vtkBuffer< ValueType > * > Data
virtual void FillTypedComponent(int compIdx, ValueType value)
Set component comp of all tuples 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...
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
bool ReallocateTuples(vtkIdType numTuples)
Allocate space for numTuples.
void SetNumberOfComponents(int num) override
Set/Get the dimension (n) of the components.
int GetArrayType() override
Method for type-checking in FastDownCast implementations.
Template defining traits of native types used by VTK.
void SetTypedComponent(vtkIdType tupleIdx, int comp, ValueType value)
Set component comp of the tuple at tupleIdx to value.
virtual void ExportToVoidPointer(void *out_ptr)
This method copies the array data to the void pointer specified by the user.