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

Method LAScriterionDropy

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

Source from the content-addressed store, hash-verified

284 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf %lf ", name(), below_y, above_y); };
285 inline BOOL filter(const LASpoint* point) { F64 y = point->get_y(); return ((below_y <= y) && (y < above_y)); };
286 LAScriterionDropy(F64 below_y, F64 above_y) { this->below_y = below_y; this->above_y = above_y; };
287private:
288 F64 below_y, above_y;
289};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected