Searched refs:ye (Results 1 - 4 of 4) sorted by relevance
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/ |
H A D | Renderer.java | 393 final float ye = tosubpixy(y3); 394 c.set(x0, y0, tosubpixx(x1), tosubpixy(y1), tosubpixx(x2), tosubpixy(y2), xe, ye); 395 curveBreakIntoLinesAndAdd(x0, y0, c, xe, ye); 397 y0 = ye; 402 final float ye = tosubpixy(y2); 403 c.set(x0, y0, tosubpixx(x1), tosubpixy(y1), xe, ye); 404 quadBreakIntoLinesAndAdd(x0, y0, c, xe, ye); 406 y0 = ye;
|
/openjdk7/jdk/src/share/classes/java/awt/geom/ |
H A D | Arc2D.java | 1078 double ye = Math.sin(rads); 1080 y1 = Math.min(y1, ye); 1082 y2 = Math.max(y2, ye); 1398 double ye = yc + halfH * Math.sin(angle); 1399 if (origrect.intersectsLine(xc, yc, xe, ye)) { 1404 ye = yc + halfH * Math.sin(angle); 1405 return !origrect.intersectsLine(xc, yc, xe, ye);
|
/openjdk7/jdk/src/share/native/sun/java2d/loops/ |
H A D | ProcessPath.c | 574 jint ye = (jint)(coords[5]*MDP_MULT); local 610 jint dy = ye - y0; 653 /* Bounding y2 by ye */ 654 if (((ye-y2)^dy) < 0) { 655 y2 = ye; 662 /* We are performing one step less than necessary and use actual (xe,ye) 667 hnd->pProcessFixedLine(hnd, x2, y2, xe, ye, pixelInfo, checkBounds, 1002 jint ye = (jint)(coords[7]*MDP_MULT); local 1055 jint dy = ye - y0; 1110 * (xe,ye) endpoin [all...] |
/openjdk7/jdk/src/share/classes/sun/java2d/loops/ |
H A D | ProcessPath.java | 677 int ye = (int)(coords[5]*MDP_MULT); 711 int dy = ye - y0; 756 /* Bounding y2 by ye */ 757 if (((ye-y2)^dy) < 0) { 758 y2 = ye; 765 * (xe,ye) endpoint of the curve instead of calculated. This prevent us 770 hnd.processFixedLine(x2, y2, xe, ye, pixelInfo, checkBounds, false); 996 int ye = (int)(coords[7]*MDP_MULT); 1047 int dy = ye - y0; 1086 /* Performing one step less than necessary and use actual (xe,ye) [all...] |
Completed in 33 milliseconds