| 346 | } |
| 347 | |
| 348 | point_count_t E57Reader::read(PointViewPtr view, point_count_t count) |
| 349 | { |
| 350 | point_count_t numPoints = e57plugin::numPoints(*m_data3D); |
| 351 | PointRef point(*view); |
| 352 | for (PointId counter = 0, nextId = view->size(); counter < numPoints; |
| 353 | ++counter, ++nextId) |
| 354 | { |
| 355 | point.setPointId(nextId); |
| 356 | fillPoint(point); |
| 357 | } |
| 358 | |
| 359 | return view->size(); |
| 360 | } |
| 361 | |
| 362 | bool E57Reader::processOne(PointRef& point) |
| 363 | { |
no test coverage detected