| 327 | |
| 328 | |
| 329 | point_count_t TIndexReader::read(PointViewPtr view, point_count_t num) |
| 330 | { |
| 331 | point_count_t cnt(0); |
| 332 | |
| 333 | PointRef point(view->point(0)); |
| 334 | for (PointId idx = 0; idx < num; ++idx) |
| 335 | { |
| 336 | point.setPointId(idx); |
| 337 | processOne(point); |
| 338 | cnt++; |
| 339 | } |
| 340 | return cnt; |
| 341 | } |
| 342 | |
| 343 | |
| 344 | bool TIndexReader::processOne(PointRef& point) |
nothing calls this directly
no test coverage detected