Returns the clockwise angle of this vector, up is angle 0 * @return {number}
()
| 730 | /** Returns the clockwise angle of this vector, up is angle 0 |
| 731 | * @return {number} */ |
| 732 | angle() { return atan2(this.x, this.y); } |
| 733 | |
| 734 | /** Sets this vector with clockwise angle and length passed in |
| 735 | * @param {number} [angle] |