| 1166 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), below_intensity); }; |
| 1167 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_INTENSITY; }; |
| 1168 | inline BOOL filter(const LASpoint* point) { return (point->get_intensity() >= below_intensity); }; |
| 1169 | LAScriterionKeepIntensityBelow(U16 below_intensity) { this->below_intensity = below_intensity; }; |
| 1170 | private: |
| 1171 | U16 below_intensity; |
nothing calls this directly
no outgoing calls
no test coverage detected