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

Method filter

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

Source from the content-addressed store, hash-verified

479 inline const CHAR* name() const { return "drop_X_above"; };
480 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), above_X); };
481 inline BOOL filter(const LASpoint* point) { return (point->get_X() >= above_X); };
482 LAScriterionDropXAbove(I32 above_X) { this->above_X = above_X; };
483private:
484 I32 above_X;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected