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

Method processOne

plugins/e57/io/E57Writer.cpp:229–240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

227}
228
229bool E57Writer::processOne(PointRef& point)
230{
231 // Update bounding box
232 m_bbox.grow(point.getFieldAs<double>(Dimension::Id::X),
233 point.getFieldAs<double>(Dimension::Id::Y),
234 point.getFieldAs<double>(Dimension::Id::Z));
235
236 // Write point
237 m_chunkWriter->write(point, m_extraDims);
238
239 return true;
240}
241
242void E57Writer::done(PointTableRef table)
243{

Callers

nothing calls this directly

Calls 2

growMethod · 0.45
writeMethod · 0.45

Tested by

no test coverage detected