| 360 | } |
| 361 | |
| 362 | vtkSLACReader::MidpointCoordinates* vtkSLACReader::MidpointCoordinateMap::FindMidpoint( |
| 363 | const EdgeEndpoints& edge) |
| 364 | { |
| 365 | vtkInternal::MapType::iterator iter = this->Internal->Map.find(edge); |
| 366 | if (iter != this->Internal->Map.end()) |
| 367 | { |
| 368 | return &iter->second; |
| 369 | } |
| 370 | else |
| 371 | { |
| 372 | return nullptr; |
| 373 | } |
| 374 | } |
| 375 | |
| 376 | //------------------------------------------------------------------------------ |
| 377 | class vtkSLACReader::MidpointIdMap::vtkInternal |
no test coverage detected