* Sorts the given data array using the specified component as a key. * Think of the array as a 2-D grid with each tuple representing a row. * Tuples are swapped until the \a k-th column of the grid is * monotonically increasing. Where two tuples have the same value for * the \a k-th component, their order in the final result is unspecified. */
| 116 | * the \a k-th component, their order in the final result is unspecified. |
| 117 | */ |
| 118 | static void SortArrayByComponent(vtkAbstractArray* arr, int k) |
| 119 | { |
| 120 | vtkSortDataArray::SortArrayByComponent(arr, k, 0); |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * Sorts the given data array using the specified component as a key. |
no outgoing calls