| 387 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d %d %d ", name(), below_X, below_Y, above_X, above_Y); }; |
| 388 | inline BOOL filter(const LASpoint* point) { return (point->get_X() < below_X) || (point->get_Y() < below_Y) || (point->get_X() >= above_X) || (point->get_Y() >= above_Y); }; |
| 389 | LAScriterionKeepXY(I32 below_X, I32 below_Y, I32 above_X, I32 above_Y) { this->below_X = below_X; this->below_Y = below_Y; this->above_X = above_X; this->above_Y = above_Y; }; |
| 390 | private: |
| 391 | I32 below_X, below_Y, above_X, above_Y; |
| 392 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected