| 141 | } |
| 142 | |
| 143 | void StraightenFilter::filter(PointView& view) |
| 144 | { |
| 145 | PointRef point(view, 0); |
| 146 | for (PointId idx = 0; idx < view.size(); ++idx) |
| 147 | { |
| 148 | point.setPointId(idx); |
| 149 | processOne(point); |
| 150 | } |
| 151 | view.invalidateProducts(); |
| 152 | } |
| 153 | |
| 154 | } // namespace pdal |
nothing calls this directly
no test coverage detected