set method
Implementation
Quaternion set(double x, double y, double z, double w) {
_x = x;
_y = y;
_z = z;
_w = w;
onChangeCallback();
return this;
}
Quaternion set(double x, double y, double z, double w) {
_x = x;
_y = y;
_z = z;
_w = w;
onChangeCallback();
return this;
}