Skip to content

Commit

Permalink
Refine comment
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-alexandrov committed Nov 11, 2023
1 parent 301c368 commit 81afa5b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions examples/writing-streamer/streamer_tutorial.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,11 @@ int main(int argc, char* argv[])
{
using namespace pdal;

// A point cloud. Only one point at a time will be in memory
// Streamed cloud structure
StreamedPointCloud stream_cloud;

// Will copy here each point and then stream it to disk.
// buf_size is the number of points that will be
// processed and kept in memory at the same time.
// processed and kept in this table at the same time.
// A somewhat bigger value may result in some efficiencies.
int buf_size = 5;
FixedPointTable t(buf_size);
Expand Down

0 comments on commit 81afa5b

Please sign in to comment.