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

Method LAScriterionKeepY

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

Source from the content-addressed store, hash-verified

421 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d ", name(), below_Y, above_Y); };
422 inline BOOL filter(const LASpoint* point) { return (point->get_Y() < below_Y) || (above_Y <= point->get_Y()); };
423 LAScriterionKeepY(I32 below_Y, I32 above_Y) { this->below_Y = below_Y; this->above_Y = above_Y; };
424private:
425 I32 below_Y, above_Y;
426};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected