| 1639 | public: |
| 1640 | inline const CHAR* name() const { return "keep_attribute_below"; }; |
| 1641 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %u %lf ", name(), index, below_attribute); }; |
| 1642 | inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_EXTRA_BYTES; }; |
| 1643 | inline BOOL filter(const LASpoint* point) { return (point->get_attribute_as_float(index) >= below_attribute); }; |
| 1644 | LAScriterionKeepAttributeBelow(U32 index, F64 below_attribute) { this->index = index; this->below_attribute = below_attribute; }; |
nothing calls this directly
no outgoing calls
no test coverage detected