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