| 385 | // Division operator overloads between vectors and scalars, and vectors and vectors |
| 386 | template<class TL, class TR> |
| 387 | inline constexpr auto operator / (const TL& lhs, const v_2d<TR>& rhs) |
| 388 | { |
| 389 | return v_2d(lhs / rhs.x, lhs / rhs.y); |
| 390 | } |
| 391 | |
| 392 | template<class TL, class TR> |
| 393 | inline constexpr auto operator / (const v_2d<TL>& lhs, const TR& rhs) |