* Convert this vector into isometric coordinate space * @returns Reference to this object for method chaining
()
| 101 | * @returns Reference to this object for method chaining |
| 102 | */ |
| 103 | toIso() { |
| 104 | return this.set(this.x - this.y, (this.x + this.y) * 0.5, this.z); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Convert this vector into 2d coordinate space |
no test coverage detected