/openjdk7/jdk/src/share/classes/sun/awt/geom/ |
H A D | CurveLink.java | 36 public CurveLink(Curve curve, double ystart, double yend, int etag) { argument 39 this.ybot = yend; 50 public boolean absorb(Curve curve, double ystart, double yend, int etag) { argument 52 ybot < ystart || ytop > yend) 56 if (ystart < curve.getYTop() || yend > curve.getYBot()) { 57 throw new InternalError("bad curvelink ["+ystart+"=>"+yend+"] for "+curve); 60 this.ybot = Math.max(ybot, yend);
|
H A D | Edge.java | 107 public void record(double yend, int etag) { argument 108 this.activey = yend;
|
H A D | Order0.java | 129 public Curve getSubCurve(double ystart, double yend, int dir) { argument
|
H A D | Crossings.java | 63 public abstract void record(double ystart, double yend, int direction); argument 78 public abstract boolean covers(double ystart, double yend); argument 213 double xstart, ystart, xend, yend; 225 yend = yhi; 228 yend = y1; 236 record(ystart, yend, direction); 315 public final boolean covers(double ystart, double yend) { argument 316 return (limit == 2 && yranges[0] <= ystart && yranges[1] >= yend); 319 public void record(double ystart, double yend, int direction) { argument 320 if (ystart >= yend) { 401 covers(double ystart, double yend) argument 453 record(double ystart, double yend, int direction) argument [all...] |
H A D | Order1.java | 165 double xstart, ystart, xend, yend; 180 yend = yhi; 183 yend = y1; 192 c.record(ystart, yend, direction); 201 public Curve getSubCurve(double ystart, double yend, int dir) { argument 202 if (ystart == y0 && yend == y1) { 206 return new Order1(x0, ystart, x1, yend, dir); 211 double xend = (x0 + (yend - y0) * num / denom); 212 return new Order1(xstart, ystart, xend, yend, dir);
|
H A D | Order2.java | 395 public Curve getSubCurve(double ystart, double yend, int dir) { argument 398 if (yend >= y1) { 405 if (yend >= y1) { 408 t1 = TforY(yend, ycoeff0, ycoeff1, ycoeff2); 429 eqn[i+4], yend,
|
H A D | Order3.java | 555 public Curve getSubCurve(double ystart, double yend, int dir) { argument 556 if (ystart <= y0 && yend >= y1) { 562 t1 = TforY(yend); 573 * very near yend and solving for the yend root ends 603 eqn[i+6], yend,
|
H A D | Curve.java | 813 double tstart, ystart, tend, yend; 828 yend = yhi; 831 yend = y1; 855 c.record(ystart, yend, direction); 862 public Curve getSubCurve(double ystart, double yend) { argument 863 return getSubCurve(ystart, yend, direction); 867 public abstract Curve getSubCurve(double ystart, double yend, int dir); argument
|
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/ |
H A D | MaskTile.java | 74 private void lineToRects(int xstart, int ystart, int xend, int yend) { argument 79 dy = yend - ystart;
|
/openjdk7/jdk/src/share/native/sun/java2d/loops/ |
H A D | DrawParallelogram.c | 53 jint yend; member in struct:__anon912 64 (pEDGE)->yend = (jint) floor((Y1) + 0.5); \ 259 jint yend = pEdge->yend; local 260 if (loy < yend) { 271 if (hiy > yend) hiy = yend;
|