* scale the renderable around his anchor point * @param {Vector2d} v - scaling vector * @returns {Renderable} Reference to this object for method chaining
(v)
| 741 | * @returns {Renderable} Reference to this object for method chaining |
| 742 | */ |
| 743 | scaleV(v) { |
| 744 | this.scale(v.x, v.y); |
| 745 | return this; |
| 746 | } |
| 747 | |
| 748 | /** |
| 749 | * Translate the renderable by the specified offset. |