| 421 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d ", name(), below_Y, above_Y); }; |
| 422 | inline BOOL filter(const LASpoint* point) { return (point->get_Y() < below_Y) || (above_Y <= point->get_Y()); }; |
| 423 | LAScriterionKeepY(I32 below_Y, I32 above_Y) { this->below_Y = below_Y; this->above_Y = above_Y; }; |
| 424 | private: |
| 425 | I32 below_Y, above_Y; |
| 426 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected