mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
rvec4.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "vec.hpp"
13#pragma warning(push)
14#pragma warning(disable : 4201)
15namespace mal_math::_detail
16{
22 template <Primitive T>
23 struct rvec<4, T>
24 {
25 using type = T;
26 static constexpr size_t size = 4;
27
29 explicit constexpr rvec(T &a, T &b, T &c, T &d) : x{ a }, y{ b }, z{ c }, w{ d } {}
31 template <AnyVec V>
32 explicit constexpr rvec(T &other) requires(V::size >= size) : x{ other.x }, y{ other.y }, z{ other.z }, w{ other.w } {}
34 template <AnyVec V>
35 explicit constexpr rvec(T const &other) requires(V::size >= size && std::is_const_v<typename V::type>) : x{ other.x }, y{ other.y }, z{ other.z }, w{ other.w } {}
36
38 template <AnyVec U>
39 static constexpr rvec<4, T> from_vec(U &other) requires(U::size >= 4) { return rvec<4, T>{other.x, other.y, other.z, other.w}; }
41 template <AnyVec U>
42 static constexpr rvec<4, T> from_vec(U const &other) requires(U::size >= 4) { return rvec<4, T>{other.x, other.y, other.z, other.w}; }
43
45 template <typename U>
47 {
48 for (size_t i = 0; i < size; i++)
49 {
50 data[i] = b.data[i];
51 }
52 return *this;
53 }
55 template <typename U>
57 {
58 for (size_t i = 0; i < size; i++)
59 {
60 data[i] = b.data[i];
61 }
62 return *this;
63 }
64
66 constexpr void reset() noexcept;
67
69 [[nodiscard]] constexpr rvec<4, T> const &operator+() const noexcept;
71 [[nodiscard]] constexpr vec<4, T> operator-() const noexcept;
72
73 template <Primitive U>
74 constexpr rvec<4, T> &operator+=(U const value) noexcept;
75 template <Primitive U>
76 constexpr rvec<4, T> &operator-=(U const value) noexcept;
77 template <Primitive U>
78 constexpr rvec<4, T> &operator*=(U const value) noexcept;
79 template <Primitive U>
80 constexpr rvec<4, T> &operator/=(U const value) noexcept;
81 template <Primitive U>
82 constexpr rvec<4, T> &operator%=(U const value) noexcept;
83 template <AnyVec U>
84 constexpr rvec<4, T> &operator+=(U const &other) noexcept requires(size == U::size);
85 template <AnyVec U>
86 constexpr rvec<4, T> &operator-=(U const &other) noexcept requires(size == U::size);
87 template <AnyVec U>
88 constexpr rvec<4, T> &operator*=(U const &other) noexcept requires(size == U::size);
89 template <AnyVec U>
90 constexpr rvec<4, T> &operator/=(U const &other) noexcept requires(size == U::size);
91 template <AnyVec U>
92 constexpr rvec<4, T> &operator%=(U const &other) noexcept requires(size == U::size);
93
95 [[nodiscard]] constexpr T &operator[](size_t i);
97 [[nodiscard]] constexpr T const &operator[](size_t i) const;
98
100 constexpr explicit operator rvec<4, const T>() const noexcept { return rvec<4, const T>{x, y, z, w}; }
101
108 template <size_t n = size>
109 [[nodiscard]] constexpr rvec<n, T> as_rvec() noexcept requires(n >= 2 && n <= size);
110
118 template <size_t n = size, Primitive U = T>
119 [[nodiscard]] constexpr vec<n, std::remove_const_t<U>> as_vec() const noexcept requires(n >= 2 && n <= size);
126 template <size_t n = size>
127 [[nodiscard]] constexpr rvec<n, const T> as_crvec() const noexcept requires(n >= 2 && n <= size);
129 union
130 {
131 struct
132 {
133 union
134 {
136 };
137 union
138 {
140 };
141 union
142 {
144 };
145 union
146 {
148 };
149 };
150 std::array<_detail::primitive_reference_wrapper<T>, 4> data;
151 };
152 static_assert(sizeof(data) == 4 * sizeof(_detail::primitive_reference_wrapper<T>));
153 };
154}; // namespace mal_math
155#pragma warning(pop)
156#include "rvec4.inl"
Reference wrapper for primitives which does not allow rebinding after instantiation.
Concept to determine if a type is any kind of vector.
Concept that ensures a type is either floating point or integral.
constexpr vec< n, typename Vector::type > const & as_crvec(Vector const &v) noexcept
Convert a given const vector to a const reference of vec with specified size and type.
Definition vec_math.inl:67
constexpr vec< n, U > as_vec(Vector const &v) noexcept
Create a new vector of a specified size and type from the given vector.
Definition vec_math.inl:34
constexpr vec< n, typename Vector::type > & as_rvec(Vector &v) noexcept
Convert a given vector to a reference of vec with specified size and type.
Definition vec_math.inl:56
STL namespace.
constexpr rvec< size, T > & operator=(rvec< size, U > const &b)
Assignment operator from another reference vector with compatible type.
Definition rvec4.hpp:46
_detail::primitive_reference_wrapper< T > b
Definition rvec4.hpp:143
_detail::primitive_reference_wrapper< T > g
Definition rvec4.hpp:139
constexpr rvec(T const &other)
Constructs a vector from a constant vector with compatible size.
Definition rvec4.hpp:35
_detail::primitive_reference_wrapper< T > r
Definition rvec4.hpp:135
constexpr rvec(T &a, T &b, T &c, T &d)
Constructs a vector from individual components.
Definition rvec4.hpp:29
static constexpr rvec< 4, T > from_vec(U &other)
Converts from another vector to this type.
Definition rvec4.hpp:39
T type
Alias for the data type.
Definition rvec4.hpp:25
constexpr rvec(T &other)
Constructs a vector from another vector with compatible size.
Definition rvec4.hpp:32
std::array< _detail::primitive_reference_wrapper< T >, 4 > data
Definition rvec4.hpp:150
_detail::primitive_reference_wrapper< T > a
Definition rvec4.hpp:147
static constexpr rvec< 4, T > from_vec(U const &other)
Converts from a constant other vector to this type.
Definition rvec4.hpp:42
constexpr rvec< size, T > & operator=(vec< size, U > const &b)
Assignment operator from a non-reference vector with compatible type.
Definition rvec4.hpp:56
Internal detail definition of a reference vector with fixed size L and type T
Definition of the mathematical vector with fixed size L and type T
Definition vecn.hpp:22
std::array< T, size > data
The underlying data of the vector.
Definition vecn.hpp:101