PixelFarm.Drawing.Color.Blend C# (CSharp) Method

Blend() public method

public Blend ( Color other, float weight ) : Color
other Color
weight float
return Color
        public Color Blend(Color other, float weight)
        {
            return this * (1 - weight) + other * weight;
        }
#if DEBUG