MCPcopy Create free account
hub / github.com/PDAL/PDAL / filter

Method filter

filters/StraightenFilter.cpp:143–152  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143void 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

Callers

nothing calls this directly

Calls 4

processOneFunction · 0.85
setPointIdMethod · 0.80
invalidateProductsMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected