Returns a copy of this vector scaled by the vector passed in * @param {number} s - scale * @return {Vector2}
(s)
| 673 | * @param {number} s - scale |
| 674 | * @return {Vector2} */ |
| 675 | scale(s) { return new Vector2(this.x * s, this.y * s); } |
| 676 | |
| 677 | /** Returns the length of this vector |
| 678 | * @return {number} */ |
no outgoing calls
no test coverage detected