Lines Matching refs:cx

2498         var cx     = 0,
2569 cx = tmpArray[0];
2571 this.parsePathMoveto(cx, cy);
2575 cx = tmpArray[j];
2577 this.parsePathLineto(cx,cy);
2584 this.parsePathMoveto(cx,cy);
2588 cx += tmpArray[j];
2590 this.parsePathLineto(cx,cy);
2598 cx = tmpArray[j];
2600 this.parsePathLineto(cx,cy);
2608 cx += tmpArray[j];
2610 this.parsePathLineto(cx,cy);
2617 cx = tmpArray[j];
2618 this.parsePathLineto(cx, cy);
2624 cx += tmpArray[j];
2625 this.parsePathLineto(cx, cy);
2632 this.parsePathLineto(cx, cy);
2639 this.parsePathLineto(cx, cy);
2653 cx = endX;
2662 ctrlX1 = cx + tmpArray[j];
2664 ctrlX2 = cx + tmpArray[j + 2];
2666 endX = cx + tmpArray[j + 4];
2669 cx = endX;
2695 cx = endX;
2716 ctrlX2 = cx + tmpArray[j];
2718 endX = cx + tmpArray[j + 2];
2721 cx = endX;
2734 this.parsePathQuadto(cx, cy, ctrlX, ctrlY, endX, endY);
2735 cx = endX;
2744 ctrlX = cx + tmpArray[j];
2746 endX = cx + tmpArray[j + 2];
2748 this.parsePathQuadto(cx, cy, ctrlX, ctrlY, endX, endY);
2749 cx = endX;
2768 ctrlX = cx;
2773 this.parsePathQuadto(cx, cy, ctrlX, ctrlY, endX, endY);
2774 cx = endX;
2793 ctrlX = cx;
2796 endX = cx + tmpArray[j];
2798 this.parsePathQuadto(cx, cy, ctrlX, ctrlY, endX, endY);
2799 cx = endX;
2814 parsePathQuadto: function(x1, y1, cx, cy, x2, y2) { argument
2818 this.parsePathVertex(x1 + ((cx-x1)*2/3), y1 + ((cy-y1)*2/3));
2819 this.parsePathVertex(x2 + ((cx-x2)*2/3), y2 + ((cy-y2)*2/3));
6975 var cx = new Array(ures);
6979 cx[i] = cosLUT[parseInt((i * delta) % PConstants.SINCOS_LENGTH, 10)];
7001 sphereX[currVert] = cx[j] * curradius;
11123 var x, y, cx, cy, nx, ny, d, a, lastCom, lenC, horiz_adv_x, getXY = '[0-9\\-]+', path;
11147 cx = 0;
11193 d = Math.sqrt(Math.pow(x - cx, 2) + Math.pow(cy - y, 2));
11194 a = Math.PI + Math.atan2(cx - x, cy - y);
11195 cx = x + (Math.sin(a) * (d));
11198 cx = x;
11202 … path += "curContext.quadraticCurveTo(" + cx + "," + (-cy) + "," + nx + "," + (-ny) + ");";
11209 cx = parseFloat(xy[0][0]);
11213 … path += "curContext.quadraticCurveTo(" + cx + "," + (-cy) + "," + nx + "," + (-ny) + ");";