VTK
9.2.20230323
|
#include <vtkArrayListTemplate.h>
Public Member Functions | |
void | AddArrays (vtkIdType numOutPts, vtkDataSetAttributes *inPD, vtkDataSetAttributes *outPD, double nullValue=0.0, vtkTypeBool promote=true) |
void | AddSelfInterpolatingArrays (vtkIdType numOutPts, vtkDataSetAttributes *attr, double nullValue=0.0) |
vtkAbstractArray * | AddArrayPair (vtkIdType numTuples, vtkAbstractArray *inArray, vtkStdString &outArrayName, double nullValue, vtkTypeBool promote) |
void | ExcludeArray (vtkAbstractArray *da) |
vtkTypeBool | IsExcluded (vtkAbstractArray *da) |
~ArrayList () | |
void | Copy (vtkIdType inId, vtkIdType outId) |
Loop over the array pairs and copy data from one to another. More... | |
void | Interpolate (int numWeights, const vtkIdType *ids, const double *weights, vtkIdType outId) |
Loop over the arrays and have them interpolate themselves. More... | |
void | InterpolateOutput (int numWeights, const vtkIdType *ids, const double *weights, vtkIdType outId) |
Loop over the arrays and have them interpolate themselves based on the output arrays. More... | |
void | Average (int numPts, const vtkIdType *ids, vtkIdType outId) |
Loop over the arrays and have them averaged. More... | |
void | WeightedAverage (int numPts, const vtkIdType *ids, const double *weights, vtkIdType outId) |
Loop over the arrays and weighted average the attributes. More... | |
void | InterpolateEdge (vtkIdType v0, vtkIdType v1, double t, vtkIdType outId) |
Loop over the arrays perform edge interpolation. More... | |
void | AssignNullValue (vtkIdType outId) |
Loop over the arrays and assign the null value. More... | |
void | Copy (unsigned short inId, unsigned short outId) |
Loop over the array pairs and copy data from one to another. More... | |
void | Interpolate (int numWeights, const unsigned short *ids, const double *weights, unsigned short outId) |
Loop over the arrays and have them interpolate themselves. More... | |
void | InterpolateOutput (int numWeights, const unsigned short *ids, const double *weights, unsigned short outId) |
Loop over the arrays and have them interpolate themselves based on the output arrays. More... | |
void | Average (int numPts, const unsigned short *ids, unsigned short outId) |
Loop over the arrays and have them averaged. More... | |
void | WeightedAverage (int numPts, const unsigned short *ids, const double *weights, unsigned short outId) |
Loop over the arrays and weighted average the attributes. More... | |
void | InterpolateEdge (unsigned short v0, unsigned short v1, double t, unsigned short outId) |
Loop over the arrays perform edge interpolation. More... | |
void | AssignNullValue (unsigned short outId) |
Loop over the arrays and assign the null value. More... | |
void | Realloc (vtkIdType sze) |
Extend (realloc) the arrays. More... | |
vtkIdType | GetNumberOfArrays () |
Return the number of arrays. More... | |
Public Attributes | |
std::vector< BaseArrayPair * > | Arrays |
std::vector< vtkAbstractArray * > | ExcludedArrays |
Protected Member Functions | |
template<typename TIdType > | |
void | Copy (TIdType inId, TIdType outId) |
template<typename TIdType > | |
void | Interpolate (int numWeights, const TIdType *ids, const double *weights, TIdType outId) |
template<typename TIdType > | |
void | InterpolateOutput (int numWeights, const TIdType *ids, const double *weights, TIdType outId) |
template<typename TIdType > | |
void | Average (int numPts, const TIdType *ids, TIdType outId) |
template<typename TIdType > | |
void | WeightedAverage (int numPts, const TIdType *ids, const double *weights, TIdType outId) |
template<typename TIdType > | |
void | InterpolateEdge (TIdType v0, TIdType v1, double t, TIdType outId) |
template<typename TIdType > | |
void | AssignNullValue (TIdType outId) |
Definition at line 699 of file vtkArrayListTemplate.h.
|
inline |
Definition at line 726 of file vtkArrayListTemplate.h.
void ArrayList::AddArrays | ( | vtkIdType | numOutPts, |
vtkDataSetAttributes * | inPD, | ||
vtkDataSetAttributes * | outPD, | ||
double | nullValue = 0.0 , |
||
vtkTypeBool | promote = true |
||
) |
void ArrayList::AddSelfInterpolatingArrays | ( | vtkIdType | numOutPts, |
vtkDataSetAttributes * | attr, | ||
double | nullValue = 0.0 |
||
) |
vtkAbstractArray* ArrayList::AddArrayPair | ( | vtkIdType | numTuples, |
vtkAbstractArray * | inArray, | ||
vtkStdString & | outArrayName, | ||
double | nullValue, | ||
vtkTypeBool | promote | ||
) |
void ArrayList::ExcludeArray | ( | vtkAbstractArray * | da | ) |
vtkTypeBool ArrayList::IsExcluded | ( | vtkAbstractArray * | da | ) |
|
inlineprotected |
Definition at line 736 of file vtkArrayListTemplate.h.
|
inlineprotected |
Definition at line 745 of file vtkArrayListTemplate.h.
|
inlineprotected |
Definition at line 754 of file vtkArrayListTemplate.h.
|
inlineprotected |
Definition at line 763 of file vtkArrayListTemplate.h.
|
inlineprotected |
Definition at line 772 of file vtkArrayListTemplate.h.
|
inlineprotected |
Definition at line 781 of file vtkArrayListTemplate.h.
|
inlineprotected |
Definition at line 790 of file vtkArrayListTemplate.h.
Loop over the array pairs and copy data from one to another.
This (and the following methods) can be used within threads.
Definition at line 803 of file vtkArrayListTemplate.h.
|
inline |
Loop over the arrays and have them interpolate themselves.
Definition at line 807 of file vtkArrayListTemplate.h.
|
inline |
Loop over the arrays and have them interpolate themselves based on the output arrays.
Definition at line 814 of file vtkArrayListTemplate.h.
Loop over the arrays and have them averaged.
Definition at line 822 of file vtkArrayListTemplate.h.
|
inline |
Loop over the arrays and weighted average the attributes.
The weights should sum to 1.0.
Definition at line 829 of file vtkArrayListTemplate.h.
Loop over the arrays perform edge interpolation.
Definition at line 836 of file vtkArrayListTemplate.h.
|
inline |
Loop over the arrays and assign the null value.
Definition at line 843 of file vtkArrayListTemplate.h.
|
inline |
Loop over the array pairs and copy data from one to another.
This (and the following methods) can be used within threads.
Definition at line 897 of file vtkArrayListTemplate.h.
|
inline |
Loop over the arrays and have them interpolate themselves.
Definition at line 901 of file vtkArrayListTemplate.h.
|
inline |
Loop over the arrays and have them interpolate themselves based on the output arrays.
Definition at line 909 of file vtkArrayListTemplate.h.
|
inline |
Loop over the arrays and have them averaged.
Definition at line 917 of file vtkArrayListTemplate.h.
|
inline |
Loop over the arrays and weighted average the attributes.
The weights should sum to 1.0.
Definition at line 924 of file vtkArrayListTemplate.h.
|
inline |
Loop over the arrays perform edge interpolation.
Definition at line 932 of file vtkArrayListTemplate.h.
|
inline |
Loop over the arrays and assign the null value.
Definition at line 939 of file vtkArrayListTemplate.h.
|
inline |
Extend (realloc) the arrays.
Definition at line 944 of file vtkArrayListTemplate.h.
|
inline |
Return the number of arrays.
Definition at line 955 of file vtkArrayListTemplate.h.
std::vector<BaseArrayPair*> ArrayList::Arrays |
Definition at line 702 of file vtkArrayListTemplate.h.
std::vector<vtkAbstractArray*> ArrayList::ExcludedArrays |
Definition at line 703 of file vtkArrayListTemplate.h.