sub method
Q
sub(
- Q o
Returns a new quaternion that is the component-wise difference of this and o.
Implementation
Q sub(Q o) => _q(x - o.x, y - o.y, z - o.z, w - o.w);
Returns a new quaternion that is the component-wise difference of this and o.
Q sub(Q o) => _q(x - o.x, y - o.y, z - o.z, w - o.w);