copy method
Copies value of source to this quaternion. @return this
Implementation
Quaternion copy(Quaternion quat){
x = quat.x;
y = quat.y;
z = quat.z;
w = quat.w;
return this;
}
Copies value of source to this quaternion. @return this
Quaternion copy(Quaternion quat){
x = quat.x;
y = quat.y;
z = quat.z;
w = quat.w;
return this;
}