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

Method read

test/unit/apps/pcpipelineTestJSON.cpp:415–426  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

413 }
414
415 virtual point_count_t read(PointViewPtr v, point_count_t count)
416 {
417 using namespace Dimension;
418
419 for (PointId idx = 0; idx < count; ++idx)
420 {
421 v->setField(Id::X, idx, idx);
422 v->setField(Id::Y, idx, 10 * idx);
423 v->setField(Id::Z, idx, 1.152);
424 }
425 return count;
426 }
427 };
428
429 XReader xr;

Callers

nothing calls this directly

Calls 1

setFieldMethod · 0.45

Tested by

no test coverage detected