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

Method read_point_inside_rectangle_indexed

LASlib/src/lasreader.cpp:363–368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

361}
362
363BOOL LASreader::read_point_inside_rectangle_indexed() {
364 while (index->seek_next((LASreader*)this)) {
365 if (read_point_default() && point.inside_rectangle(r_min_x, r_min_y, r_max_x, r_max_y)) return TRUE;
366 }
367 return FALSE;
368}
369
370BOOL LASreader::read_point_inside_rectangle_copc_indexed() {
371 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