#include <cmath>
#include <cstdarg>
#include <cstdint>
#include <cassert>
#include <limits>
#include <string>
#include <iostream>
#include <jau/float_math.hpp>
Go to the source code of this file.
|
namespace | jau |
| __pack(...): Produces MSVC, clang and gcc compatible lead-in and -out macros.
|
|
namespace | jau::math |
|
|
template<typename T , std::enable_if_t< std::numeric_limits< T >::is_integer, bool > = true> |
constexpr Vector2I< T > | jau::math::operator* (const float s, const Vector2I< T > &rhs) noexcept |
|
template<typename T , std::enable_if_t< std::numeric_limits< T >::is_integer, bool > = true> |
constexpr Vector2I< T > | jau::math::operator* (const Vector2I< T > &lhs, const float s) noexcept |
|
template<typename T , std::enable_if_t< std::numeric_limits< T >::is_integer, bool > = true> |
constexpr Vector2I< T > | jau::math::operator+ (const Vector2I< T > &lhs, const Vector2I< T > &rhs) noexcept |
|
template<typename T , std::enable_if_t< std::numeric_limits< T >::is_integer, bool > = true> |
constexpr Vector2I< T > | jau::math::operator- (const Vector2I< T > &lhs, const Vector2I< T > &rhs) noexcept |
|
template<typename T , std::enable_if_t< std::numeric_limits< T >::is_integer, bool > = true> |
constexpr Vector2I< T > | jau::math::operator/ (const Vector2I< T > &lhs, const float s) noexcept |
|
template<typename T , std::enable_if_t< std::numeric_limits< T >::is_integer, bool > = true> |
std::ostream & | jau::math::operator<< (std::ostream &out, const Vector2I< T > &v) noexcept |
|