34 #ifndef vtkAOSDataArrayTemplate_h
35 #define vtkAOSDataArrayTemplate_h
37 #include "vtkCommonCoreModule.h"
43 template <
class ValueTypeT>
67 return this->Buffer->GetBuffer()[valueIdx];
75 this->Buffer->GetBuffer()[valueIdx] =
value;
85 std::copy(this->Buffer->GetBuffer() + valueIdx,
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;
213 bool HasStandardMemoryLayout() VTK_OVERRIDE {
return true; }
221 VTK_LEGACY(
void GetTupleValue(
vtkIdType tupleIdx, ValueType *tuple));
222 VTK_LEGACY(
void SetTupleValue(
vtkIdType tupleIdx,
const ValueType *tuple));
223 VTK_LEGACY(
void InsertTupleValue(
vtkIdType tupleIdx,
const ValueType *tuple));
224 VTK_LEGACY(
vtkIdType InsertNextTupleValue(
const ValueType *tuple));
234 { this->Superclass::InsertTuples(dstIds, srcIds,
source); }
244 bool AllocateTuples(
vtkIdType numTuples);
250 bool ReallocateTuples(
vtkIdType numTuples);
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
346 extern template class VTKCOMMONCORE_EXPORT vtkAOSDataArrayTemplate)
348 #pragma warning (pop)
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
abstract base class for most VTK objects
virtual void ShallowCopy(vtkDataArray *other)
Create a shallow copy of other into this, if possible.
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...
ValueType GetValue(vtkIdType valueIdx) const
Get the value at valueIdx.
virtual int GetDataType()=0
Return the underlying data type.
virtual int GetArrayType()
Method for type-checking in FastDownCast implementations.
Base interface for all typed vtkDataArray subclasses.
void SetVoidArray(void *, vtkIdType, int) override
Default implementation raises a runtime error.
vtkAOSDataArrayTemplate< ValueTypeT > SelfType
internal storage class used by vtkSOADataArrayTemplate, vtkAOSDataArrayTemplate, and others...
#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
abstract superclass for arrays of numeric data
void SetValue(vtkIdType valueIdx, ValueType value)
Set the value at valueIdx to value.
void GetTypedTuple(vtkIdType tupleIdx, ValueType *tuple) const
Copy the tuple at tupleIdx into tuple.
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 * 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.
ValueType GetTypedComponent(vtkIdType tupleIdx, int comp) const
Get component comp of the tuple at tupleIdx.
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.
static vtkAOSDataArrayTemplate< ValueType > * FastDownCast(vtkAbstractArray *source)
Perform a fast, safe cast from a vtkAbstractArray to a vtkAOSDataArrayTemplate.
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.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
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...
Template defining traits of native types used by VTK.