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

Method LAScriterionDropx

LASlib/src/lasfilter.cpp:264–264  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

262 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf %lf ", name(), below_x, above_x); };
263 inline BOOL filter(const LASpoint* point) { F64 x = point->get_x(); return ((below_x <= x) && (x < above_x)); };
264 LAScriterionDropx(F64 below_x, F64 above_x) { this->below_x = below_x; this->above_x = above_x; };
265private:
266 F64 below_x, above_x;
267};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected