Divide this Vec4 component-wise by the given Vec4. @param v the vector to divide by @return this
(Vec4 v)
| 699 | * @param v the vector to divide by |
| 700 | * @return this |
| 701 | */ |
| 702 | public Vec4 div(Vec4 v) { |
| 703 | x /= v.x; |
| 704 | y /= v.y; |
| 705 | z /= v.z; |
| 706 | z /= v.w; |
| 707 | return this; |
| 708 | } |
| 709 | |
| 710 | /** |