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

Method LAScriterionKeepy

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

Source from the content-addressed store, hash-verified

273 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf %lf ", name(), below_y, above_y); };
274 inline BOOL filter(const LASpoint* point) { F64 y = point->get_y(); return (y < below_y) || (y >= above_y); };
275 LAScriterionKeepy(F64 below_y, F64 above_y) { this->below_y = below_y; this->above_y = above_y; };
276private:
277 F64 below_y, above_y;
278};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected