set method
Set the value of the 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;
}
Set the value of the 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;
}