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

Method LAScriterionDropX

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

Source from the content-addressed store, hash-verified

409 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d ", name(), below_X, above_X); };
410 inline BOOL filter(const LASpoint* point) { return ((below_X <= point->get_X()) && (point->get_X() < above_X)); };
411 LAScriterionDropX(I32 below_X, I32 above_X) { this->below_X = below_X; this->above_X = above_X; };
412private:
413 I32 below_X;
414 I32 above_X;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected