| 511 | public: |
| 512 | inline const CHAR* name() const { return "drop_Z_below"; }; |
| 513 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), below_Z); }; |
| 514 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_Z; }; |
| 515 | inline BOOL filter(const LASpoint* point) { return (point->get_Z() < below_Z); }; |
| 516 | LAScriterionDropZBelow(I32 below_Z) { this->below_Z = below_Z; }; |
nothing calls this directly
no outgoing calls
no test coverage detected