MCPcopy Create free account
hub / github.com/LAStools/LAStools / read_point_inside_rectangle_copc_indexed

Method read_point_inside_rectangle_copc_indexed

LASlib/src/lasreader.cpp:370–377  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

368}
369
370BOOL LASreader::read_point_inside_rectangle_copc_indexed() {
371 while (copc_index->seek_next((LASreader*)this)) {
372 if (read_point_default() && point.inside_rectangle(r_min_x, r_min_y, r_max_x, r_max_y)) {
373 return TRUE;
374 }
375 }
376 return FALSE;
377}
378
379BOOL LASreader::read_point_inside_depth_copc_indexed() {
380 while (copc_index->seek_next((LASreader*)this)) {

Callers

nothing calls this directly

Calls 2

seek_nextMethod · 0.45
inside_rectangleMethod · 0.45

Tested by

no test coverage detected