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