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

Method filter

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

Source from the content-addressed store, hash-verified

340 inline const CHAR* name() const { return "drop_y_below"; };
341 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf ", name(), below_y); };
342 inline BOOL filter(const LASpoint* point) { return (point->get_y() < below_y); };
343 LAScriterionDropyBelow(F64 below_y) { this->below_y = below_y; };
344private:
345 F64 below_y;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected