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

Method filter

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

Source from the content-addressed store, hash-verified

490 inline const CHAR* name() const { return "drop_Y_below"; };
491 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), below_Y); };
492 inline BOOL filter(const LASpoint* point) { return (point->get_Y() < below_Y); };
493 LAScriterionDropYBelow(I32 below_Y) { this->below_Y = below_Y; };
494private:
495 I32 below_Y;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected