AnimalCrossingQR.AC.Color.Distance C# (CSharp) Method

Distance() public static method

public static Distance ( Color a, Color b ) : double
a Color
b Color
return double
        public static double Distance(Color a, Color b)
        {
            return Math.Sqrt(DistanceSquared(a, b));
        }