Searched refs:yend (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DCurveLink.java36 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 DCrossings.java63 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 DOrder1.java165 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 DEdge.java107 public void record(double yend, int etag) { argument
108 this.activey = yend;
H A DOrder0.java129 public Curve getSubCurve(double ystart, double yend, int dir) { argument
H A DOrder2.java395 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 DAreaOp.java316 double yend = yrange[1];
333 double furthesty = yend;
360 e.record(yend, etag);
361 links.add(new CurveLink(e.getCurve(), ystart, yend, etag));
396 yrange[0] = yend;
H A DOrder3.java555 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 DCurve.java813 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/share/native/sun/java2d/loops/
H A DDrawParallelogram.c53 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;
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DMaskTile.java74 private void lineToRects(int xstart, int ystart, int xend, int yend) { argument
79 dy = yend - ystart;
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRegion.java745 int yend;
752 yend = Math.min(ay2, by1);
755 box[3] = yend;
765 yend = Math.min(by2, ay1);
768 box[3] = yend;
778 yend = Math.min(ay2, by2);
780 box[3] = yend;
835 y = yend;

Completed in 47 milliseconds