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

Method read_point_inside_circle_indexed

LASlib/src/lasreader.cpp:342–347  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

340}
341
342BOOL LASreader::read_point_inside_circle_indexed() {
343 while (index->seek_next((LASreader*)this)) {
344 if (read_point_default() && point.inside_circle(c_center_x, c_center_y, c_radius_squared)) return TRUE;
345 }
346 return FALSE;
347}
348
349BOOL LASreader::read_point_inside_circle_copc_indexed() {
350 while (copc_index->seek_next((LASreader*)this)) {

Callers

nothing calls this directly

Calls 2

seek_nextMethod · 0.45
inside_circleMethod · 0.45

Tested by

no test coverage detected