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

Method filter

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

Source from the content-addressed store, hash-verified

318 inline const CHAR* name() const { return "drop_x_below"; };
319 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf ", name(), below_x); };
320 inline BOOL filter(const LASpoint* point) { return (point->get_x() < below_x); };
321 LAScriterionDropxBelow(F64 below_x) { this->below_x = below_x; };
322private:
323 F64 below_x;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected