| 523 | public: |
| 524 | inline const CHAR* name() const { return "drop_Z_above"; }; |
| 525 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), above_Z); }; |
| 526 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_Z; }; |
| 527 | inline BOOL filter(const LASpoint* point) { return (point->get_Z() >= above_Z); }; |
| 528 | LAScriterionDropZAbove(I32 above_Z) { this->above_Z = above_Z; }; |
nothing calls this directly
no outgoing calls
no test coverage detected