#include <algorithm>
#include <cassert>
#include <cmath>
#include <cstdarg>
#include <initializer_list>
#include <iostream>
#include <limits>
#include <string>
#include <jau/float_math.hpp>
#include <jau/math/vec2f.hpp>
#include <jau/type_concepts.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<jau::req::packed_floating_point T> |
constexpr Vector3F< T > | jau::math::abs (const Vector3F< T > &lhs) noexcept |
|
template<jau::req::packed_floating_point T> |
constexpr Vector3F< T > | jau::math::max (const Vector3F< T > &lhs, const Vector3F< T > &rhs) noexcept |
|
template<jau::req::packed_floating_point T> |
constexpr Vector3F< T > | jau::math::min (const Vector3F< T > &lhs, const Vector3F< T > &rhs) noexcept |
|
template<jau::req::packed_floating_point T> |
constexpr Vector3F< T > | jau::math::operator* (const T s, const Vector3F< T > &rhs) noexcept |
|
template<jau::req::packed_floating_point T> |
constexpr Vector3F< T > | jau::math::operator* (const Vector3F< T > &lhs, const T s) noexcept |
|
template<jau::req::packed_floating_point T> |
constexpr Vector3F< T > | jau::math::operator+ (const Vector3F< T > &lhs, const Vector3F< T > &rhs) noexcept |
|
template<jau::req::packed_floating_point T> |
constexpr Vector3F< T > | jau::math::operator- (const Vector3F< T > &lhs) noexcept |
|
template<jau::req::packed_floating_point T> |
constexpr Vector3F< T > | jau::math::operator- (const Vector3F< T > &lhs, const Vector3F< T > &rhs) noexcept |
|
template<jau::req::packed_floating_point T> |
constexpr Vector3F< T > | jau::math::operator/ (const T s, const Vector3F< T > &rhs) noexcept |
|
template<jau::req::packed_floating_point T> |
constexpr Vector3F< T > | jau::math::operator/ (const Vector3F< T > &lhs, const T s) noexcept |
|
template<jau::req::packed_floating_point T> |
std::ostream & | jau::math::operator<< (std::ostream &out, const Ray3F< T > &v) noexcept |
|
template<jau::req::packed_floating_point T> |
std::ostream & | jau::math::operator<< (std::ostream &out, const Vector3F< T > &v) noexcept |
|