| 223 | { |
| 224 | template <class OffsetsT, class ConnectivityT> |
| 225 | void operator()( |
| 226 | OffsetsT* vtkNotUsed(offsets), ConnectivityT* conn, vtkIdType numIds, PointMap& ptMap) |
| 227 | { |
| 228 | auto connRange = GetRange(conn); |
| 229 | for (vtkIdType i = 0; i < numIds; ++i) |
| 230 | { |
| 231 | connRange[i] = ptMap[connRange[i]]; |
| 232 | } |
| 233 | } |
| 234 | }; |
| 235 | |
| 236 | // Helper function to in place update point numbering |
nothing calls this directly
no test coverage detected