* Multiply this vector values by the passed vector * @param v other vector * @returns Reference to this object for method chaining
(v: Vector3d)
| 93 | * @returns Reference to this object for method chaining |
| 94 | */ |
| 95 | scaleV(v: Vector3d) { |
| 96 | return this.scale(v.x, v.y, v.z); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * Convert this vector into isometric coordinate space |