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

Method LAScriterionDropY

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

Source from the content-addressed store, hash-verified

432 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d ", name(), below_Y, above_Y); };
433 inline BOOL filter(const LASpoint* point) { return ((below_Y <= point->get_Y()) && (point->get_Y() < above_Y)); };
434 LAScriterionDropY(I32 below_Y, I32 above_Y) { this->below_Y = below_Y; this->above_Y = above_Y; };
435private:
436 I32 below_Y;
437 I32 above_Y;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected