* Divide this vector values by the passed value * @param n - the value to divide the vector by * @returns Reference to this object for method chaining
(n: number)
| 118 | * @returns Reference to this object for method chaining |
| 119 | */ |
| 120 | div(n: number) { |
| 121 | return this.set(this.x / n, this.y / n, this.z / n); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Update this vector values to absolute values |
no test coverage detected