Sets the vector from values params: @x (float): X component of our vector @y (float): Y component of our vector @z (float): Z component of our vector returns: @this (Vec2): this vector after being set
(x, y, z)
| 80 | @this (Vec2): this vector after being set |
| 81 | ***/ |
| 82 | set(x, y, z) { |
| 83 | this._x = x; |
| 84 | this._y = y; |
| 85 | this._z = z; |
| 86 | |
| 87 | return this; |
| 88 | } |
| 89 | |
| 90 | |
| 91 | /*** |
no outgoing calls
no test coverage detected