| 284 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf %lf ", name(), below_y, above_y); }; |
| 285 | inline BOOL filter(const LASpoint* point) { F64 y = point->get_y(); return ((below_y <= y) && (y < above_y)); }; |
| 286 | LAScriterionDropy(F64 below_y, F64 above_y) { this->below_y = below_y; this->above_y = above_y; }; |
| 287 | private: |
| 288 | F64 below_y, above_y; |
| 289 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected