set method
Implementation
QuaternionC set(num x, num y, num z, num w) {
this.x = x.toDouble();
this.y = y.toDouble();
this.z = z.toDouble();
this.w = w.toDouble();
return this;
}
QuaternionC set(num x, num y, num z, num w) {
this.x = x.toDouble();
this.y = y.toDouble();
this.z = z.toDouble();
this.w = w.toDouble();
return this;
}