| 1202 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), above_intensity); }; |
| 1203 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_INTENSITY; }; |
| 1204 | inline BOOL filter(const LASpoint* point) { return (point->get_intensity() > above_intensity); }; |
| 1205 | LAScriterionDropIntensityAbove(I32 above_intensity) { this->above_intensity = above_intensity; }; |
| 1206 | private: |
| 1207 | I32 above_intensity; |
nothing calls this directly
no outgoing calls
no test coverage detected