| 435 | { |
| 436 | template <class OffsetsT, class ConnectivityT> |
| 437 | void operator()(OffsetsT* offsets, ConnectivityT* conn, vtkIdType cellId, |
| 438 | vtkIdType cellPointIndex, vtkIdType newPointId) const |
| 439 | { |
| 440 | using ValueType = GetAPIType<OffsetsT>; |
| 441 | |
| 442 | GetRange(conn)[GetBeginOffset(offsets, cellId) + cellPointIndex] = |
| 443 | static_cast<ValueType>(newPointId); |
| 444 | } |
| 445 | }; |
| 446 | |
| 447 | struct ReplaceCellAtIdImpl : public vtkCellArray::DispatchUtilities |
nothing calls this directly
no test coverage detected