MCPcopy Create free account
hub / github.com/BIMCoderLiang/LNLib / nextone

Method nextone

src/LNLib/Algorithm/Voronoi.cpp:1493–1504  ·  view source on GitHub ↗

return a single in-storage site */

Source from the content-addressed store, hash-verified

1491
1492/* return a single in-storage site */
1493struct LNLib::Site* LNLib::VoronoiDiagramGenerator::nextone()
1494{
1495 struct LNLib::Site* s;
1496 if (siteidx < nsites)
1497 {
1498 s = &sites[siteidx];
1499 siteidx += 1;
1500 return(s);
1501 }
1502 else
1503 return((struct LNLib::Site*)NULL);
1504}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected