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

Method filter

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

Source from the content-addressed store, hash-verified

329 inline const CHAR* name() const { return "drop_x_above"; };
330 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf ", name(), above_x); };
331 inline BOOL filter(const LASpoint* point) { return (point->get_x() >= above_x); };
332 LAScriterionDropxAbove(F64 above_x) { this->above_x = above_x; };
333private:
334 F64 above_x;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected