* Convert this vector into 2d coordinate space * @returns Reference to this object for method chaining
()
| 109 | * @returns Reference to this object for method chaining |
| 110 | */ |
| 111 | to2d() { |
| 112 | return this.set(this.y + this.x / 2, this.y - this.x / 2, this.z); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Divide this vector values by the passed value |
no test coverage detected