PixelFarm.Drawing.Color.Blend C# (CSharp) 메소드

Blend() 공개 메소드

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