| 202 | { |
| 203 | template <class OffsetsT, class ConnectivityT> |
| 204 | void operator()( |
| 205 | OffsetsT* vtkNotUsed(offsets), ConnectivityT* conn, vtkIdType numIds, PointMap& ptMap) |
| 206 | { |
| 207 | auto connRange = GetRange(conn); |
| 208 | for (vtkIdType i = 0; i < numIds; ++i) |
| 209 | { |
| 210 | ptMap[connRange[i]] = 1; |
| 211 | } |
| 212 | } |
| 213 | }; |
| 214 | |
| 215 | // Helper function to in place mark point usage |
nothing calls this directly
no test coverage detected