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

Method read_point_inside_tile_indexed

LASlib/src/lasreader.cpp:328–333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326}
327
328BOOL LASreader::read_point_inside_tile_indexed() {
329 while (index->seek_next((LASreader*)this)) {
330 if (read_point_default() && point.inside_tile(t_ll_x, t_ll_y, t_ur_x, t_ur_y)) return TRUE;
331 }
332 return FALSE;
333}
334
335BOOL LASreader::read_point_inside_circle() {
336 while (read_point_default()) {

Callers

nothing calls this directly

Calls 2

seek_nextMethod · 0.45
inside_tileMethod · 0.45

Tested by

no test coverage detected