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

Method LAScriterionDropz

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

Source from the content-addressed store, hash-verified

308 inline U32 get_decompress_selective() const { return LASZIP_DECOMPRESS_SELECTIVE_Z; };
309 inline BOOL filter(const LASpoint* point) { F64 z = point->get_z(); return ((below_z <= z) && (z < above_z)); };
310 LAScriterionDropz(F64 below_z, F64 above_z) { this->below_z = below_z; this->above_z = above_z; };
311private:
312 F64 below_z, above_z;
313};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected