Lines Matching defs:y1
193 float y1 = y0 + dy;
195 addLine(x0, y0, x1, y1);
197 y0 = y1;
226 float x1 = x0, y1 = y0;
252 y1 += dy;
257 y1 = y3;
259 addLine(x0, y0, x1, y1);
261 y0 = y1;
265 private void addLine(float x1, float y1, float x2, float y2) {
267 if (y2 < y1) {
269 y2 = y1;
270 y1 = or;
276 final int firstCrossing = Math.max((int)Math.ceil(y1), boundsMinY);
281 if (y1 < edgeMinY) { edgeMinY = y1; }
284 final float slope = (x2 - x1) / (y2 - y1);
298 edges[ptr+CURX] = x1 + (firstCrossing - y1) * slope;
381 float y1 = tosubpixy(pix_y1);
382 addLine(x0, y0, x1, y1);
384 y0 = y1;
388 @Override public void curveTo(float x1, float y1,
394 c.set(x0, y0, tosubpixx(x1), tosubpixy(y1), tosubpixx(x2), tosubpixy(y2), xe, ye);
400 @Override public void quadTo(float x1, float y1, float x2, float y2) {
403 c.set(x0, y0, tosubpixx(x1), tosubpixy(y1), xe, ye);