| 274 | |
| 275 | |
| 276 | point_count_t Ilvis2Reader::read(PointViewPtr view, point_count_t count) |
| 277 | { |
| 278 | PointId idx = view->size(); |
| 279 | point_count_t numRead = 0; |
| 280 | |
| 281 | PointRef point = PointRef(*view, 0); |
| 282 | while (numRead < count) |
| 283 | { |
| 284 | point.setPointId(idx++); |
| 285 | if (!processOne(point)) |
| 286 | break; |
| 287 | if (m_cb) |
| 288 | m_cb(*view, idx); |
| 289 | numRead++; |
| 290 | } |
| 291 | |
| 292 | return numRead; |
| 293 | } |
| 294 | |
| 295 | |
| 296 | void Ilvis2Reader::done(PointTableRef table) |
nothing calls this directly
no test coverage detected