* Given field data (and derived classes such as point data and cell data), * sort all the arrays in the field data given an array and a component * number k from that array. In other words, if an array has n components, * the kth component is used to sort the array and all of the other arrays * in the field data. Also note that the user can indicate whether the * function returns t
| 67 | * be skipped and not sorted.) |
| 68 | */ |
| 69 | static vtkIdType* Sort(vtkFieldData* fd, const char* arrayName, int k, int returnIndices) |
| 70 | { |
| 71 | return vtkSortFieldData::Sort(fd, arrayName, k, returnIndices, 0); |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Given field data (and derived classes such as point data and cell data), |
no outgoing calls