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

Method Hierarchy

io/private/copc/Entry.cpp:42–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40{
41
42Hierarchy::Hierarchy(const std::vector<char>& data)
43{
44 LeExtractor in(data.data(), data.size());
45 while (in)
46 {
47 Entry e;
48 in >> e.m_key >> e.m_offset >> e.m_byteSize >> e.m_pointCount;
49 m_entries.insert(e);
50 }
51}
52
53point_count_t Hierarchy::pointCount() const
54{

Callers

nothing calls this directly

Calls 3

dataMethod · 0.45
sizeMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected