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

Method get_cell

src/lasinterval.cpp:332–345  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

330}
331
332BOOL LASinterval::get_cell(const I32 c_index)
333{
334 my_cell_hash::iterator hash_element = ((my_cell_hash*)cells)->find(c_index);
335 if (hash_element == ((my_cell_hash*)cells)->end())
336 {
337 current_cell = 0;
338 return FALSE;
339 }
340 index = (*hash_element).first;
341 full = (*hash_element).second->full;
342 total = (*hash_element).second->total;
343 current_cell = (*hash_element).second;
344 return TRUE;
345}
346
347BOOL LASinterval::add_current_cell_to_merge_cell_set()
348{

Callers 1

merge_intervalsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected