| 341 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf ", name(), below_y); }; |
| 342 | inline BOOL filter(const LASpoint* point) { return (point->get_y() < below_y); }; |
| 343 | LAScriterionDropyBelow(F64 below_y) { this->below_y = below_y; }; |
| 344 | private: |
| 345 | F64 below_y; |
| 346 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected