| 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 | }; |
| 900 | private: |
| 901 | F32 below_HSL, above_HSL; |
| 902 | I32 channel; |
nothing calls this directly
no outgoing calls
no test coverage detected