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

Method LAScriterionKeepX

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

Source from the content-addressed store, hash-verified

398 inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d ", name(), below_X, above_X); };
399 inline BOOL filter(const LASpoint* point) { return (point->get_X() < below_X) || (above_X <= point->get_X()); };
400 LAScriterionKeepX(I32 below_X, I32 above_X) { this->below_X = below_X; this->above_X = above_X; };
401private:
402 I32 below_X, above_X;
403};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected