Searched defs:lineTo (Results 1 - 3 of 3) sorted by relevance
| /yui3/src/graphics/js/ |
| H A D | SVGDrawing.js | 131 this.lineTo(x + w, y); 132 this.lineTo(x + w, y + h); 133 this.lineTo(x, y + h); 134 this.lineTo(x, y); 150 this.lineTo(x, y + h - eh); 152 this.lineTo(x + w - ew, y + h); 154 this.lineTo(x + w, y + eh); 156 this.lineTo(x + ew, y); 219 this.lineTo(x + width, y + midHeight); 220 this.lineTo( [all...] |
| H A D | CanvasDrawing.js | 142 * the drawing method that will be called. All subsequent indices are argument for that method. For example, `lineTo(10, 100)` would be structured as: 143 * `["lineTo", 10, 100]`. 154 * @method lineTo 158 lineTo: function(point1, point2, etc) 181 this._updateDrawingQueue(["lineTo", x, y]); 302 this.lineTo(x + width, y + midHeight); 303 this.lineTo(x + midWidth, y + height); 304 this.lineTo(x, y + midHeight); 305 this.lineTo(x + midWidth, y); 364 this._updateDrawingQueue(["lineTo", [all...] |
| H A D | VMLDrawing.js | 107 this.lineTo(x + w, y); 108 this.lineTo(x + w, y + h); 109 this.lineTo(x, y + h); 110 this.lineTo(x, y); 129 this.lineTo(x, y + h - eh); 131 this.lineTo(x + w - ew, y + h); 133 this.lineTo(x + w, y + eh); 135 this.lineTo(x + ew, y); 197 this.lineTo(x + width, y + midHeight); 198 this.lineTo( [all...] |
Completed in 8 milliseconds