|
template<typename T , std::enable_if_t< std::is_floating_point_v< T >, bool > = true> |
constexpr Vector4F< T > | jau::math::operator* (const T s, const Vector4F< T > &rhs) noexcept |
|
template<typename T , std::enable_if_t< std::is_floating_point_v< T >, bool > = true> |
constexpr Vector4F< T > | jau::math::operator* (const Vector4F< T > &lhs, const T s) noexcept |
|
template<typename T , std::enable_if_t< std::is_floating_point_v< T >, bool > = true> |
constexpr Vector4F< T > | jau::math::operator+ (const Vector4F< T > &lhs, const Vector4F< T > &rhs) noexcept |
|
template<typename T , std::enable_if_t< std::is_floating_point_v< T >, bool > = true> |
constexpr Vector4F< T > | jau::math::operator- (const Vector4F< T > &lhs, const Vector4F< T > &rhs) noexcept |
|
template<typename T , std::enable_if_t< std::is_floating_point_v< T >, bool > = true> |
constexpr Vector4F< T > | jau::math::operator/ (const Vector4F< T > &lhs, const T s) noexcept |
|
template<typename T , std::enable_if_t< std::is_floating_point_v< T >, bool > = true> |
std::ostream & | jau::math::operator<< (std::ostream &out, const Vector4F< T > &v) noexcept |
|
template<typename T , std::enable_if_t< std::is_floating_point_v< T >, bool > = true> |
constexpr Vector3F< T > | jau::math::to_vec3 (const Vector4F< T > &v) noexcept |
| out = { this.x, this.y, this.z } dropping w, returns out. More...
|
|