Lines Matching defs:lineTo
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", x + w, y]);
365 this._updateDrawingQueue(["lineTo", x + w, y + h]);
366 this._updateDrawingQueue(["lineTo", x, y + h]);
367 this._updateDrawingQueue(["lineTo", x, y]);
388 this._updateDrawingQueue(["lineTo", x, y + h - eh]);
390 this._updateDrawingQueue(["lineTo", x + w - ew, y + h]);
392 this._updateDrawingQueue(["lineTo", x + w, y + eh]);
394 this._updateDrawingQueue(["lineTo", x + ew, y]);
462 this.lineTo(ax, ay);
475 this._updateDrawingQueue(["lineTo", x, y]);