| 273 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf %lf ", name(), below_y, above_y); }; |
| 274 | inline BOOL filter(const LASpoint* point) { F64 y = point->get_y(); return (y < below_y) || (y >= above_y); }; |
| 275 | LAScriterionKeepy(F64 below_y, F64 above_y) { this->below_y = below_y; this->above_y = above_y; }; |
| 276 | private: |
| 277 | F64 below_y, above_y; |
| 278 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected