I would like to smoothly interpolate color from Color A (let's call it red) to Color C (let's call it green) going through color B (let's call it yellow), based on the value of a certain variable.
If the variable = 100, I want pure green. If the variable = 50, I want pure yellow. If the variable = 0, I want pure red.
I understand you can treat each RGB triplet as a coordinate in 3-dimensional space. What I'm looking for is a quick-and-dirty linear interpolation trick that works cleanly with the specific layout of the .NET Color type (separate values for ARGB etc).
Another way to blend colors using Gaussian distribution like this (any number of colors for a range of 0.0 - 1.0, to increase blending increase sigma_2 value)
More information http://en.wikipedia.org/wiki/Normal_distribution
Sample of blending 3 colors:
First, you ask for linear interpolation but you don't specify that color B lives on the line between color A and color C; this is necessary. Second, you didn't specify but I am going to make a simplifying assumption that color B is the midpoint of the line between color A and color C; the following code is easily modified if this is not true. Lastly, I changed your assumption that the parameter be an integer between zero and one-hundred to be a double between zero and one. The code is easier to write and easier to understand in the latter case, and can still be used with the former (divide your inputs by one-hundred).
How do you modify this if color B is not the midpoint between color A and color C? The easiest way is the following. If the parameter (what I call "
lambda
") is less than0.5
, multiplylambda
by two and return the interpolated color between color A and color B. If the parameter is greater than0.5
, multiplylambda
by two and subtract one (this maps[0.5, 1]
onto[0, 1]
) and return the interpolated color between color B and color C.If you don't like the requirement that color B live on the line between color A and color C, then you can use exactly the modification that I just described to do a piecewise-linear interpolation between the colors.
Finally, you did not specify if you want to interpolate the so-called alpha value (the 'A' in "ARGB"). The above code is easily modified to handle this situation too. Add one more
ComponentSelector
defined ascolor => color.A
, useInterpolateComponent
to interpolate this value and use theColor.FromArgb(int, int, int, int)
overload ofColor.FromArgb
.