* Sets the vector's z component to the given value. * * @param {number} z - The value to set. * @return {Vector3} A reference to this vector.
( z )
| 144 | * @return {Vector3} A reference to this vector. |
| 145 | */ |
| 146 | setZ( z ) { |
| 147 | |
| 148 | this.z = z; |
| 149 | |
| 150 | return this; |
| 151 | |
| 152 | } |
| 153 | |
| 154 | /** |
| 155 | * Allows to set a vector component with an index. |
no outgoing calls
no test coverage detected