| 352 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf ", name(), above_y); }; |
| 353 | inline BOOL filter(const LASpoint* point) { return (point->get_y() >= above_y); }; |
| 354 | LAScriterionDropyAbove(F64 above_y) { this->above_y = above_y; }; |
| 355 | private: |
| 356 | F64 above_y; |
| 357 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected