| 432 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d ", name(), below_Y, above_Y); }; |
| 433 | inline BOOL filter(const LASpoint* point) { return ((below_Y <= point->get_Y()) && (point->get_Y() < above_Y)); }; |
| 434 | LAScriterionDropY(I32 below_Y, I32 above_Y) { this->below_Y = below_Y; this->above_Y = above_Y; }; |
| 435 | private: |
| 436 | I32 below_Y; |
| 437 | I32 above_Y; |
nothing calls this directly
no outgoing calls
no test coverage detected