Home
last modified time | relevance | path

Searched refs:labX (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/com/android/internal/graphics/
DColorUtils.java554 public static double distanceEuclidean(@NonNull double[] labX, @NonNull double[] labY) { in distanceEuclidean() argument
555 return Math.sqrt(Math.pow(labX[0] - labY[0], 2) in distanceEuclidean()
556 + Math.pow(labX[1] - labY[1], 2) in distanceEuclidean()
557 + Math.pow(labX[2] - labY[2], 2)); in distanceEuclidean()