| 359 | // Multiplication operator overloads between vectors and scalars, and vectors and vectors |
| 360 | template<class TL, class TR> |
| 361 | inline constexpr auto operator * (const TL& lhs, const v_2d<TR>& rhs) |
| 362 | { |
| 363 | return v_2d(lhs * rhs.x, lhs * rhs.y); |
| 364 | } |
| 365 | |
| 366 | template<class TL, class TR> |
| 367 | inline constexpr auto operator * (const v_2d<TL>& lhs, const TR& rhs) |