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

Method LAScriterionKeepHSL

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

Source from the content-addressed store, hash-verified

885 return ((hsl[channel] < below_HSL) || (above_HSL < hsl[channel]));
886 };
887 LAScriterionKeepHSL(F32 below_HSL, F32 above_HSL, I32 channel)
888 {
889 if (above_HSL < below_HSL)
890 {
891 this->below_HSL = above_HSL;
892 this->above_HSL = below_HSL;
893 }
894 else {
895 this->below_HSL = below_HSL;
896 this->above_HSL = above_HSL;
897 };
898 this->channel = channel;
899 };
900private:
901 F32 below_HSL, above_HSL;
902 I32 channel;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected