| 430 | public: |
| 431 | inline const CHAR* name() const { return "drop_Y"; }; |
| 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: |
nothing calls this directly
no outgoing calls
no test coverage detected