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

Method read_point_inside_circle

LASlib/src/lasreader.cpp:335–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

333}
334
335BOOL LASreader::read_point_inside_circle() {
336 while (read_point_default()) {
337 if (point.inside_circle(c_center_x, c_center_y, c_radius_squared)) return TRUE;
338 }
339 return FALSE;
340}
341
342BOOL LASreader::read_point_inside_circle_indexed() {
343 while (index->seek_next((LASreader*)this)) {

Callers

nothing calls this directly

Calls 1

inside_circleMethod · 0.45

Tested by

no test coverage detected