1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkTypedArray.h
-------------------------------------------------------------------------
Copyright 2008 Sandia Corporation.
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkTypedArray - Provides a type-specific interface to N-way arrays
//
// .SECTION Description
// vtkTypedArray provides an interface for retrieving and updating data in an
// arbitrary-dimension array. It derives from vtkArray and is templated on the
// type of value stored in the array.
//
// Methods are provided for retrieving and updating array values based either
// on their array coordinates, or on a 1-dimensional integer index. The latter
// approach can be used to iterate over the values in an array in arbitrary order,
// which is useful when writing filters that operate efficiently on sparse arrays
// and arrays that can have any number of dimensions.
//
// Special overloaded methods provide simple access for arrays with one, two, or
// three dimensions.
//
// .SECTION See Also
// vtkArray, vtkDenseArray, vtkSparseArray
//
// .SECTION Thanks
// Developed by Timothy M. Shead (tshead@sandia.gov) at Sandia National Laboratories.
#ifndef __vtkTypedArray_h
#define __vtkTypedArray_h
#include "vtkArray.h"
#include "vtkTypeTemplate.h"
class vtkArrayCoordinates;
template<typename T>
class vtkTypedArray : public vtkTypeTemplate<vtkTypedArray<T>, vtkArray>
{
public:
typedef typename vtkArray::CoordinateT CoordinateT;
typedef typename vtkArray::SizeT SizeT;
#if (defined(_MSC_VER) && _MSC_VER < 1400) || defined(__WRAP__)
vtkVariant GetVariantValue(vtkIdType i) { return this->vtkArray::GetVariantValue(i); }
vtkVariant GetVariantValue(vtkIdType i, vtkIdType j) { return this->vtkArray::GetVariantValue(i,j); }
vtkVariant GetVariantValue(vtkIdType i, vtkIdType j, vtkIdType k) { return this->vtkArray::GetVariantValue(i,j,k); }
void SetVariantValue(vtkIdType i, const vtkVariant& value) { this->vtkArray::SetVariantValue(i, value); }
void SetVariantValue(vtkIdType i, vtkIdType j, const vtkVariant& value) { this->vtkArray::SetVariantValue(i,j, value); }
void SetVariantValue(vtkIdType i, vtkIdType j, vtkIdType k, const vtkVariant& value) { this->vtkArray::SetVariantValue(i,j,k, value); }
#else
using vtkTypeTemplate<vtkTypedArray<T>, vtkArray>::GetVariantValue;
using vtkTypeTemplate<vtkTypedArray<T>, vtkArray>::SetVariantValue;
#endif
void PrintSelf(ostream &os, vtkIndent indent);
// vtkArray API
virtual vtkVariant GetVariantValue(const vtkArrayCoordinates& coordinates);
virtual vtkVariant GetVariantValueN(const SizeT n);
virtual void SetVariantValue(const vtkArrayCoordinates& coordinates, const vtkVariant& value);
virtual void SetVariantValueN(const SizeT n, const vtkVariant& value);
virtual void CopyValue(vtkArray* source, const vtkArrayCoordinates& source_coordinates, const vtkArrayCoordinates& target_coordinates);
virtual void CopyValue(vtkArray* source, const SizeT source_index, const vtkArrayCoordinates& target_coordinates);
virtual void CopyValue(vtkArray* source, const vtkArrayCoordinates& source_coordinates, const SizeT target_index);
// Description:
// Returns the value stored in the array at the given coordinates.
// Note that the number of dimensions in the supplied coordinates must
// match the number of dimensions in the array.
virtual const T& GetValue(CoordinateT i) = 0;
virtual const T& GetValue(CoordinateT i, CoordinateT j) = 0;
virtual const T& GetValue(CoordinateT i, CoordinateT j, CoordinateT k) = 0;
virtual const T& GetValue(const vtkArrayCoordinates& coordinates) = 0;
// Description:
// Returns the n-th value stored in the array, where n is in the
// range [0, GetNonNullSize()). This is useful for efficiently
// visiting every value in the array. Note that the order in which
// values are visited is undefined, but is guaranteed to match the
// order used by vtkArray::GetCoordinatesN().
virtual const T& GetValueN(const SizeT n) = 0;
// Description:
// Overwrites the value stored in the array at the given coordinates.
// Note that the number of dimensions in the supplied coordinates must
// match the number of dimensions in the array.
virtual void SetValue(CoordinateT i, const T& value) = 0;
virtual void SetValue(CoordinateT i, CoordinateT j, const T& value) = 0;
virtual void SetValue(CoordinateT i, CoordinateT j, CoordinateT k, const T& value) = 0;
virtual void SetValue(const vtkArrayCoordinates& coordinates, const T& value) = 0;
// Description:
// Overwrites the n-th value stored in the array, where n is in the
// range [0, GetNonNullSize()). This is useful for efficiently
// visiting every value in the array. Note that the order in which
// values are visited is undefined, but is guaranteed to match the
// order used by vtkArray::GetCoordinatesN().
virtual void SetValueN(const SizeT n, const T& value) = 0;
protected:
vtkTypedArray() {}
~vtkTypedArray() {}
private:
vtkTypedArray(const vtkTypedArray&); // Not implemented
void operator=(const vtkTypedArray&); // Not implemented
};
#include "vtkTypedArray.txx"
#endif
|