Lines Matching refs:y1

2814       parsePathQuadto: function(x1, y1, cx, cy, x2, y2) {  argument
2818 this.parsePathVertex(x1 + ((cx-x1)*2/3), y1 + ((cy-y1)*2/3));
2825 parsePathCurveto : function(x1, y1, x2, y2, x3, y3) { argument
2828 this.parsePathVertex(x1, y1);
8334 y1 = vertArray[lastPoint][1],
8340 …var yplot1 = draw[4] * y1 + draw[5] * arguments[1] + draw[6] * arguments[4] + draw[7] * arguments[…
8341 …var yplot2 = draw[8] * y1 + draw[9] * arguments[1] + draw[10]* arguments[4] + draw[11]* arguments[…
8342 …var yplot3 = draw[12]* y1 + draw[13]* arguments[1] + draw[14]* arguments[4] + draw[15]* arguments[…
8349 y1 += yplot1; yplot1 += yplot2; yplot2 += yplot3;
8351 p.vertex(x1, y1, z1);
8438 var curveVertexSegment = function(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4) { argument
8449 var yplot1 = draw[4] * y1 + draw[5] * y2 + draw[6] * y3 + draw[7] * y4;
8450 var yplot2 = draw[8] * y1 + draw[9] * y2 + draw[10] * y3 + draw[11] * y4;
8451 var yplot3 = draw[12] * y1 + draw[13] * y2 + draw[14] * y3 + draw[15] * y4;
8575 var x1, y1, z1, x2, y2, z2;
8580 y1 = arguments[1];
8587 y1 = arguments[1];
8594 var lineVerts = [x1, y1, z1, x2, y2, z2];
8625 y1 = arguments[1];
8630 … if ((x1 === x2 || y1 === y2) && lineWidth <= 1.0 && doStroke && curSketch.options.crispLines) {
8633 if(y1 > y2) { temp = y1; y1 = y2; y2 = temp; }
8634 for(var y=y1;y<=y2;++y) {
8640 p.set(x, y1, currentStrokeColor);
8648 curContext.moveTo(x1 || 0, y1 || 0);
8697 p.triangle = function triangle(x1, y1, x2, y2, x3, y3) { argument
8699 p.vertex(x1, y1, 0);
8705 p.quad = function quad(x1, y1, x2, y2, x3, y3, x4, y4) { argument
8707 p.vertex(x1, y1, 0);