set method
Sets the given values to this quaternion.
Implementation
Quaternion set(double x, double y, double z, double w ) {
this.x = x;
this.y = y;
this.z = z;
this.w = w;
return this;
}
Sets the given values to this quaternion.
Quaternion set(double x, double y, double z, double w ) {
this.x = x;
this.y = y;
this.z = z;
this.w = w;
return this;
}