Lines Matching refs:x1

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);
8333 var x1 = vertArray[lastPoint][0],
8336 …var xplot1 = draw[4] * x1 + draw[5] * arguments[0] + draw[6] * arguments[3] + draw[7] * arguments[…
8337 …var xplot2 = draw[8] * x1 + draw[9] * arguments[0] + draw[10]* arguments[3] + draw[11]* arguments[…
8338 …var xplot3 = draw[12]* x1 + draw[13]* arguments[0] + draw[14]* arguments[3] + draw[15]* arguments[…
8348 x1 += xplot1; xplot1 += xplot2; xplot2 += xplot3;
8351 p.vertex(x1, y1, z1);
8438 var curveVertexSegment = function(x1, y1, z1, x2, y2, z2, x3, y3, z3, x4, y4, z4) { argument
8445 var xplot1 = draw[4] * x1 + draw[5] * x2 + draw[6] * x3 + draw[7] * x4;
8446 var xplot2 = draw[8] * x1 + draw[9] * x2 + draw[10] * x3 + draw[11] * x4;
8447 var xplot3 = draw[12] * x1 + draw[13] * x2 + draw[14] * x3 + draw[15] * x4;
8575 var x1, y1, z1, x2, y2, z2;
8579 x1 = arguments[0];
8586 x1 = arguments[0];
8594 var lineVerts = [x1, y1, z1, x2, y2, z2];
8624 x1 = arguments[0];
8630 … if ((x1 === x2 || y1 === y2) && lineWidth <= 1.0 && doStroke && curSketch.options.crispLines) {
8632 if(x1 === x2) {
8635 p.set(x1, y, currentStrokeColor);
8638 if(x1 > x2) { temp = x1; x1 = x2; x2 = temp; }
8639 for(var x=x1;x<=x2;++x) {
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);