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

Method read_point_inside_rectangle

LASlib/src/lasreader.cpp:356–361  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

354}
355
356BOOL LASreader::read_point_inside_rectangle() {
357 while (read_point_default()) {
358 if (point.inside_rectangle(r_min_x, r_min_y, r_max_x, r_max_y)) return TRUE;
359 }
360 return FALSE;
361}
362
363BOOL LASreader::read_point_inside_rectangle_indexed() {
364 while (index->seek_next((LASreader*)this)) {

Callers

nothing calls this directly

Calls 1

inside_rectangleMethod · 0.45

Tested by

no test coverage detected