set method

Quat set(
  1. dynamic x,
  2. dynamic y,
  3. dynamic z,
  4. dynamic w,
)

Set the current Quant with the new values

Implementation

Quat set( x, y, z, w ) {
  this.x = x;
  this.y = y;
  this.z = z;
  this.w = w;

  return this;
}