Divide this Vec2 component-wise by another Vec2. @param v the vector to divide by @return this
(Vec2 v)
| 812 | * @return this |
| 813 | */ |
| 814 | public Vec2 div(Vec2 v) { |
| 815 | x /= v.x; |
| 816 | y /= v.y; |
| 817 | return this; |
| 818 | } |
| 819 | |
| 820 | /** |
| 821 | * Divide this Vec2 component-wise by another Vec2 and store the result in <code>dest</code>. |
no outgoing calls
no test coverage detected