| 282 | |
| 283 | |
| 284 | point_count_t FauxReader::read(PointViewPtr view, point_count_t count) |
| 285 | { |
| 286 | for (PointId idx = 0; idx < count; ++idx) |
| 287 | { |
| 288 | PointRef point = view->point(idx); |
| 289 | if (!processOne(point)) |
| 290 | break; |
| 291 | if (m_cb) |
| 292 | m_cb(*view, idx); |
| 293 | } |
| 294 | return count; |
| 295 | } |
| 296 | |
| 297 | } // namespace pdal |
nothing calls this directly
no test coverage detected