| 262 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf %lf ", name(), below_x, above_x); }; |
| 263 | inline BOOL filter(const LASpoint* point) { F64 x = point->get_x(); return ((below_x <= x) && (x < above_x)); }; |
| 264 | LAScriterionDropx(F64 below_x, F64 above_x) { this->below_x = below_x; this->above_x = above_x; }; |
| 265 | private: |
| 266 | F64 below_x, above_x; |
| 267 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected