Component-wise divide.
Vector3 Vector3Divide(Vector3 v1, Vector3 v2) => Vector3(v1.x / v2.x, v1.y / v2.y, v1.z / v2.z);