Created
February 3, 2020 16:53
-
-
Save danhollick/d128ee7d9e6142a89af99e058f8ff306 to your computer and use it in GitHub Desktop.
Overlay colors
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function overlay(foreground, alpha, backgound) { | |
| const overlaid = foreground.map((channel, i) => | |
| Math.round(channel * alpha + backgound[i] * (1 - alpha)) | |
| ) | |
| return overlaid | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment