Home | History | Annotate | Download | only in transition

Lines Matching refs:endY

182     public Path getPath(float startX, float startY, float endX, float endY) {
204 if (startY == endY) {
208 ex = startX + mMinimumVerticalTangent * Math.abs(endY - startY) / 2;
209 ey = (startY + endY) / 2;
212 float deltaY = startY - endY; // Y is inverted compared to diagram above.
218 float dy = (startY + endY) / 2;
232 ey = endY + eDistY;
241 ey = endY;
268 float controlY2 = (ey + endY) / 2;
269 path.cubicTo(controlX1, controlY1, controlX2, controlY2, endX, endY);