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

Method read

io/BpfReader.cpp:370–382  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

368
369
370point_count_t BpfReader::read(PointViewPtr data, point_count_t count)
371{
372 switch (m_header.m_pointFormat)
373 {
374 case BpfFormat::PointMajor:
375 return readPointMajor(data, count);
376 case BpfFormat::DimMajor:
377 return readDimMajor(data, count);
378 case BpfFormat::ByteMajor:
379 return readByteMajor(data, count);
380 }
381 return 0;
382}
383
384
385bool BpfReader::eof()

Callers 4

initializeMethod · 0.45
readUlemDataMethod · 0.45
readUlemFilesMethod · 0.45
readPolarDataMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected