HomeSort by relevance Sort by last modified time
    Searched refs:ydelt (Results 1 - 2 of 2) sorted by null

  /packages/apps/Camera2/src/com/android/camera/crop/
GeometryMathUtils.java 85 float ydelt = y2 - y1; local
86 if (xdelt == 0 && ydelt == 0)
88 float u = ((point[0] - x1) * xdelt + (point[1] - y1) * ydelt)
89 / (xdelt * xdelt + ydelt * ydelt);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GeometryMathUtils.java 134 float ydelt = y2 - y1; local
135 if (xdelt == 0 && ydelt == 0)
137 float u = ((point[0] - x1) * xdelt + (point[1] - y1) * ydelt)
138 / (xdelt * xdelt + ydelt * ydelt);

Completed in 47 milliseconds