| 1176 | public: |
| 1177 | inline const CHAR* name() const { return "keep_intensity_above"; }; |
| 1178 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), above_intensity); }; |
| 1179 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_INTENSITY; }; |
| 1180 | inline BOOL filter(const LASpoint* point) { return (point->get_intensity() <= above_intensity); }; |
| 1181 | LAScriterionKeepIntensityAbove(U16 above_intensity) { this->above_intensity = above_intensity; }; |
nothing calls this directly
no outgoing calls
no test coverage detected