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

Method processOne

test/unit/io/LasReaderTest.cpp:503–513  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

501 DimTypeList m_dims;
502
503 bool processOne(PointRef& point)
504 {
505 PointRef bulkPoint = m_view->point(m_cnt);
506
507 bulkPoint.getPackedData(m_dims, m_bulkBuf.data());
508 point.getPackedData(m_dims, m_buf.data());
509 EXPECT_EQ(memcmp(m_buf.data(), m_bulkBuf.data(),
510 m_view->pointSize()), 0);
511 m_cnt++;
512 return true;
513 }
514
515 void done(PointTableRef)
516 {

Callers

nothing calls this directly

Calls 3

pointMethod · 0.80
pointSizeMethod · 0.80
dataMethod · 0.45

Tested by

no test coverage detected