| 67 | // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // |
| 68 | |
| 69 | void sortLabelledTri::indices(labelList& newIndices) const |
| 70 | { |
| 71 | newIndices.setSize(size()); |
| 72 | |
| 73 | forAll(newIndices, i) |
| 74 | { |
| 75 | newIndices[i] = operator[](i).index_; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | |
| 80 | labelList sortLabelledTri::indices() const |
no test coverage detected