| 319 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %lf ", name(), below_x); }; |
| 320 | inline BOOL filter(const LASpoint* point) { return (point->get_x() < below_x); }; |
| 321 | LAScriterionDropxBelow(F64 below_x) { this->below_x = below_x; }; |
| 322 | private: |
| 323 | F64 below_x; |
| 324 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected