| 1190 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), below_intensity); }; |
| 1191 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_INTENSITY; }; |
| 1192 | inline BOOL filter(const LASpoint* point) { return (point->get_intensity() < below_intensity); }; |
| 1193 | LAScriterionDropIntensityBelow(I32 below_intensity) { this->below_intensity = below_intensity; }; |
| 1194 | private: |
| 1195 | I32 below_intensity; |
nothing calls this directly
no outgoing calls
no test coverage detected