| 126 | |
| 127 | |
| 128 | point_count_t RxpReader::read(PointViewPtr view, point_count_t num) |
| 129 | { |
| 130 | point_count_t numRead = 0; |
| 131 | PointRef point(view->point(0)); |
| 132 | while (numRead < num && !m_pointcloud->endOfInput()) { |
| 133 | point.setPointId(numRead); |
| 134 | processOne(point); |
| 135 | ++numRead; |
| 136 | } |
| 137 | return numRead; |
| 138 | } |
| 139 | |
| 140 | |
| 141 | bool RxpReader::processOne(PointRef& point) |
nothing calls this directly
no test coverage detected