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

Method read

test/unit/StreamingTest.cpp:144–159  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

142 }
143
144 virtual point_count_t read(PointViewPtr view, point_count_t numPts)
145 {
146
147 PointId idx = view->size();
148 point_count_t cnt = 0;
149 PointRef point(*view);
150 while (cnt < numPts)
151 {
152 point.setPointId(idx);
153 if (!processOne(point))
154 break;
155 cnt++;
156 idx++;
157 }
158 return cnt;
159 }
160
161private:
162 bool m_entered;

Callers 2

unwrapMethod · 0.45
verifyBpfMethod · 0.45

Calls 3

processOneFunction · 0.85
setPointIdMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected