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

Function process

filters/private/hexer/Processor.cpp:47–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45{
46
47void process(BaseGrid& grid, PointReader reader, int count)
48{
49 double x, y;
50 void* context;
51
52 grid.setSampleSize(std::min(count, 10000));
53
54 while (reader(x, y, context))
55 {
56 grid.addXY(x, y);
57 }
58 grid.findShapes();
59 grid.findParentPaths();
60}
61
62} //namespace hexer

Callers 5

readMethod · 0.85
readMethod · 0.85
readMethod · 0.85
runMethod · 0.85
executeMethod · 0.85

Calls 2

findShapesMethod · 0.80
findParentPathsMethod · 0.80

Tested by

no test coverage detected