Searched defs:quadraticCurveTo (Results 1 - 3 of 3) sorted by relevance

/yui3/src/graphics/js/
H A DSVGDrawing.js82 * @method quadraticCurveTo
88 quadraticCurveTo: function(cpx, cpy, x, y) {
151 this.quadraticCurveTo(x, y + h, x + ew, y + h);
153 this.quadraticCurveTo(x + w, y + h, x + w, y + h - eh);
155 this.quadraticCurveTo(x + w, y, x + w - ew, y);
157 this.quadraticCurveTo(x, y, x, y + eh);
H A DCanvasDrawing.js240 * @method quadraticCurveTo
246 quadraticCurveTo: function(cpx, cpy, x, y) {
252 this._updateDrawingQueue(["quadraticCurveTo", cpx, cpy, x, y]);
343 this._updateDrawingQueue(["quadraticCurveTo", cx, cy, bx, by]);
389 this._updateDrawingQueue(["quadraticCurveTo", x, y + h, x + ew, y + h]);
391 this._updateDrawingQueue(["quadraticCurveTo", x + w, y + h, x + w, y + h - eh]);
393 this._updateDrawingQueue(["quadraticCurveTo", x + w, y, x + w - ew, y]);
395 this._updateDrawingQueue(["quadraticCurveTo", x, y, x, y + eh]);
472 this._updateDrawingQueue(["quadraticCurveTo", cx, cy, bx, by]);
H A DVMLDrawing.js80 * @method quadraticCurveTo
86 quadraticCurveTo: function(cpx, cpy, x, y) {
130 this.quadraticCurveTo(x, y + h, x + ew, y + h);
132 this.quadraticCurveTo(x + w, y + h, x + w, y + h - eh);
134 this.quadraticCurveTo(x + w, y, x + w - ew, y);
136 this.quadraticCurveTo(x, y, x, y + eh);

Completed in 7 milliseconds