MCPcopy Create free account
hub / github.com/Kitware/VTK / GetNextMidpoint

Method GetNextMidpoint

IO/NetCDF/vtkSLACReader.cxx:439–449  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

437}
438
439bool vtkSLACReader::MidpointIdMap::GetNextMidpoint(EdgeEndpoints& edge, vtkIdType& midpoint)
440{
441 if (this->Internal->Iterator == this->Internal->Map.end())
442 return false;
443
444 edge = this->Internal->Iterator->first;
445 midpoint = this->Internal->Iterator->second;
446
447 ++this->Internal->Iterator;
448 return true;
449}
450
451//=============================================================================
452vtkObjectFactoryNewMacro(vtkSLACReader);

Callers 1

Calls 1

endMethod · 0.45

Tested by

no test coverage detected