| 445 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_Z; }; |
| 446 | inline BOOL filter(const LASpoint* point) { return (point->get_Z() < below_Z) || (above_Z <= point->get_Z()); }; |
| 447 | LAScriterionKeepZ(I32 below_Z, I32 above_Z) { this->below_Z = below_Z; this->above_Z = above_Z; }; |
| 448 | private: |
| 449 | I32 below_Z, above_Z; |
| 450 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected