| 330 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf ", name(), above_x); }; |
| 331 | inline BOOL filter(const LASpoint* point) { return (point->get_x() >= above_x); }; |
| 332 | LAScriterionDropxAbove(F64 above_x) { this->above_x = above_x; }; |
| 333 | private: |
| 334 | F64 above_x; |
| 335 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected