powered by
This function can be used to compute the result of color mixing (it assumes additive mixing).
mixcolor(alpha, color1, color2, where = class(color1))
The mixed color is obtained by combining an amount 1 - alpha of color1 with an amount alpha of color2.
1 - alpha
color1
alpha
color2
The first color.
The second color.
The color space where the mixing is to take place.
The mixed color. This is in the color space specified by where.
where
RGB, HSV, XYZ, LAB, polarLAB, LUV, polarLUV.
RGB
HSV
XYZ
LAB
polarLAB
LUV
polarLUV
# NOT RUN { mixcolor(0.5, RGB(1, 0, 0), RGB(0, 1, 0)) # }
Run the code above in your browser using DataLab