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

Method get_command

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

Source from the content-addressed store, hash-verified

419public:
420 inline const CHAR* name() const { return "keep_Y"; };
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:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected