| 457 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_Z; }; |
| 458 | inline BOOL filter(const LASpoint* point) { return ((below_Z <= point->get_Z()) && (point->get_Z() < above_Z)); }; |
| 459 | LAScriterionDropZ(I32 below_Z, I32 above_Z) { this->below_Z = below_Z; this->above_Z = above_Z; }; |
| 460 | private: |
| 461 | I32 below_Z; |
| 462 | I32 above_Z; |
nothing calls this directly
no outgoing calls
no test coverage detected