return a single in-storage site */
| 1491 | |
| 1492 | /* return a single in-storage site */ |
| 1493 | struct 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected