Divide this Vec3 component-wise by another Vec3. @param v the vector to divide by @return this
(Vec3 v)
| 748 | * @return this |
| 749 | */ |
| 750 | public Vec3 div(Vec3 v) { |
| 751 | x /= v.x; |
| 752 | y /= v.y; |
| 753 | z /= v.z; |
| 754 | return this; |
| 755 | } |
| 756 | |
| 757 | /** |
| 758 | * Divide this Vec3 component-wise by another Vec3 and store the result in <code>dest</code>. |