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

Method read_point_inside_circle_copc_indexed

LASlib/src/lasreader.cpp:349–354  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

347}
348
349BOOL LASreader::read_point_inside_circle_copc_indexed() {
350 while (copc_index->seek_next((LASreader*)this)) {
351 if (read_point_default() && point.inside_circle(c_center_x, c_center_y, c_radius_squared)) return TRUE;
352 }
353 return FALSE;
354}
355
356BOOL LASreader::read_point_inside_rectangle() {
357 while (read_point_default()) {

Callers

nothing calls this directly

Calls 2

seek_nextMethod · 0.45
inside_circleMethod · 0.45

Tested by

no test coverage detected