MCPcopy Create free account
hub / github.com/LASzip/LASzip / LASwritePoint

Method LASwritePoint

src/laswritepoint.cpp:45–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43#include <stdio.h>
44
45LASwritePoint::LASwritePoint()
46{
47 outstream = 0;
48 num_writers = 0;
49 writers = 0;
50 writers_raw = 0;
51 writers_compressed = 0;
52 enc = 0;
53 layered_las14_compression = FALSE;
54 // used for chunking
55 chunk_size = U32_MAX;
56 chunk_count = 0;
57 number_chunks = 0;
58 alloced_chunks = 0;
59 chunk_sizes = 0;
60 chunk_bytes = 0;
61 chunk_table_start_position = 0;
62 chunk_start_position = 0;
63}
64
65BOOL LASwritePoint::setup(const U32 num_items, const LASitem* items, const LASzip* laszip)
66{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected