Welcome to mirror list, hosted at ThFree Co, Russian Federation.

clip_rgb.coffee « conversions « src « chroma-js « node_modules - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 442e9590833b54b1e08ae96916fd78cc67b4c394 (plain)
1
2
3
4
5
6
7
8
9
10

clip_rgb = (rgb) ->
    for i of rgb
        if i < 3
            rgb[i] = 0 if rgb[i] < 0
            rgb[i] = 255 if rgb[i] > 255
        else if i == 3
            rgb[i] = 0 if rgb[i] < 0
            rgb[i] = 1 if rgb[i] > 1
    rgb