| 282 | public: |
| 283 | inline const CHAR* name() const { return "drop_y"; }; |
| 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: |
nothing calls this directly
no outgoing calls
no test coverage detected