* 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)
| 219 | * @returns Reference to this object for method chaining |
| 220 | */ |
| 221 | div(n: number) { |
| 222 | return this.set(this.x / n, this.y / n, this.z / n); |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Update this vector values to absolute values |