| 341 | } |
| 342 | |
| 343 | void vtkSLACReader::MidpointCoordinateMap::RemoveMidpoint(const EdgeEndpoints& edge) |
| 344 | { |
| 345 | vtkInternal::MapType::iterator iter = this->Internal->Map.find(edge); |
| 346 | if (iter != this->Internal->Map.end()) |
| 347 | { |
| 348 | this->Internal->Map.erase(iter); |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | void vtkSLACReader::MidpointCoordinateMap::RemoveAllMidpoints() |
| 353 | { |
no test coverage detected