MCPcopy Create free account
hub / github.com/LAStools/LAStools / LAScriterionKeepz

Method LAScriterionKeepz

LASlib/src/lasfilter.cpp:298–298  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

296 inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_Z; };
297 inline BOOL filter(const LASpoint* point) { F64 z = point->get_z(); return (z < below_z) || (z >= above_z); };
298 LAScriterionKeepz(F64 below_z, F64 above_z) { this->below_z = below_z; this->above_z = above_z; };
299private:
300 F64 below_z, above_z;
301};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected