Lines Matching refs:yhi

38     double xlo, ylo, xhi, yhi;  field in Crossings
40 public Crossings(double xlo, double ylo, double xhi, double yhi) { in Crossings() argument
44 this.yhi = yhi; in Crossings()
60 return yhi; in getYHi()
67 System.out.println(" bounds = ["+ylo+", "+yhi+"]"); in print()
82 double xhi, double yhi) in findCrossings() argument
84 Crossings cross = new EvenOdd(xlo, ylo, xhi, yhi); in findCrossings()
100 double xhi, double yhi) in findCrossings() argument
104 cross = new EvenOdd(xlo, ylo, xhi, yhi); in findCrossings()
106 cross = new NonZero(xlo, ylo, xhi, yhi); in findCrossings()
204 if (yhi <= y0 || ylo >= y1) { in accumulateLine()
223 if (yhi < y1) { in accumulateLine()
224 xend = x0 + (yhi - y0) * dx / dy; in accumulateLine()
225 yend = yhi; in accumulateLine()
246 if (y0 > yhi && coords[1] > yhi && coords[3] > yhi) { in accumulateQuad()
254 record(Math.max(y0, ylo), Math.min(coords[3], yhi), 1); in accumulateQuad()
256 record(Math.max(coords[3], ylo), Math.min(y0, yhi), -1); in accumulateQuad()
278 if (y0 > yhi && coords[1] > yhi && in accumulateCubic()
279 coords[3] > yhi && coords[5] > yhi) in accumulateCubic()
292 record(Math.max(y0, ylo), Math.min(coords[5], yhi), 1); in accumulateCubic()
294 record(Math.max(coords[5], ylo), Math.min(y0, yhi), -1); in accumulateCubic()
311 public EvenOdd(double xlo, double ylo, double xhi, double yhi) { in EvenOdd() argument
312 super(xlo, ylo, xhi, yhi); in EvenOdd()
396 public NonZero(double xlo, double ylo, double xhi, double yhi) { in NonZero() argument
397 super(xlo, ylo, xhi, yhi); in NonZero()
405 double yhi = yranges[i++]; in covers() local
406 if (ystart >= yhi) { in covers()
412 if (yend <= yhi) { in covers()
415 ystart = yhi; in covers()