Set this quaternion to the new values. @param x the new value of x @param y the new value of y @param z the new value of z @param w the new value of w @return this
(double x, double y, double z, double w)
| 269 | * @param w the new value of w |
| 270 | * @return this |
| 271 | */ |
| 272 | public Quat set(double x, double y, double z, double w) { |
| 273 | this.x = x; |
| 274 | this.y = y; |
| 275 | this.z = z; |
| 276 | this.w = w; |
| 277 | return this; |
| 278 | } |
| 279 | |
| 280 | /** |
nothing calls this directly
no test coverage detected