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

Method inside_none

LASlib/src/lasreader.cpp:148–162  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

146}
147
148BOOL LASreader::inside_none() {
149 if (filter || transform) {
150 read_complex = &LASreader::read_point_default;
151 } else {
152 read_simple = &LASreader::read_point_default;
153 }
154 if (inside) {
155 header.min_x = orig_min_x;
156 header.min_y = orig_min_y;
157 header.max_x = orig_max_x;
158 header.max_y = orig_max_y;
159 inside = 0;
160 }
161 return TRUE;
162}
163
164BOOL LASreader::inside_tile(const F32 ll_x, const F32 ll_y, const F32 size) {
165 inside = 1;

Callers 1

reopenMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected