Searched refs:inverseRation (Results 1 – 6 of 6) sorted by relevance
179 final float inverseRation = 1f - ratio; in blendColors() local180 float r = (Color.red(color1) * ratio) + (Color.red(color2) * inverseRation); in blendColors()181 float g = (Color.green(color1) * ratio) + (Color.green(color2) * inverseRation); in blendColors()182 float b = (Color.blue(color1) * ratio) + (Color.blue(color2) * inverseRation); in blendColors()