| 1025 | return ((hsv[channel] >= below_HSV) && (hsv[channel] <= above_HSV)); |
| 1026 | }; |
| 1027 | LAScriterionDropHSV(F32 below_HSV, F32 above_HSV, I32 channel) |
| 1028 | { |
| 1029 | if (above_HSV < below_HSV) |
| 1030 | { |
| 1031 | this->below_HSV = above_HSV; |
| 1032 | this->above_HSV = below_HSV; |
| 1033 | } |
| 1034 | else { |
| 1035 | this->below_HSV = below_HSV; |
| 1036 | this->above_HSV = above_HSV; |
| 1037 | }; |
| 1038 | this->channel = channel; |
| 1039 | }; |
| 1040 | private: |
| 1041 | F32 below_HSV, above_HSV; |
| 1042 | I32 channel; |
nothing calls this directly
no outgoing calls
no test coverage detected