mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
vec4.inl
Go to the documentation of this file.
1#pragma once
2#include "vec4.hpp"
3namespace mal_math
4{
5 template <Primitive T>
6 template <Primitive U>
7 constexpr vec<4, T>::vec(U value) { x = y = z = w = static_cast<T>(value); }
8 template <Primitive T>
9 template <Primitive A, Primitive B, Primitive C, Primitive D>
10 constexpr vec<4, T>::vec(A a, B b, C c, D d)
11 {
12 x = static_cast<T>(a);
13 y = static_cast<T>(b);
14 z = static_cast<T>(c);
15 w = static_cast<T>(d);
16 }
17 template <Primitive T>
18 template <typename... U>
19 constexpr vec<4, T>::vec(U... data)
20 {
21 static_assert(get_parameter_pack_size<U...>() == size,
22 "You have provided wrong amount of data");
23 unpack_data(0, data...);
24 }
25 template <Primitive T>
26 constexpr void vec<4, T>::reset() noexcept
27 {
28 x = y = z = w = 0;
29 }
30
31 template <Primitive T>
32 [[nodiscard]] constexpr vec<4, T> const &vec<4, T>::operator+() const noexcept
33 {
34 return *this;
35 }
36 template <Primitive T>
37 [[nodiscard]] constexpr vec<4, T> vec<4, T>::operator-() const noexcept
38 {
39 return vec<4, T>(-x, -y, -z, -w);
40 }
41
42 template <Primitive T>
43 template <Primitive U>
44 constexpr vec<4, T> &vec<4, T>::operator+=(U const value) noexcept
45 {
46 x = static_cast<T>(x + value);
47 y = static_cast<T>(y + value);
48 z = static_cast<T>(z + value);
49 w = static_cast<T>(w + value);
50 return *this;
51 }
52 template <Primitive T>
53 template <Primitive U>
54 constexpr vec<4, T> &vec<4, T>::operator-=(U const value) noexcept
55 {
56 x = static_cast<T>(x - value);
57 y = static_cast<T>(y - value);
58 z = static_cast<T>(z - value);
59 w = static_cast<T>(w - value);
60 return *this;
61 }
62 template <Primitive T>
63 template <Primitive U>
64 constexpr vec<4, T> &vec<4, T>::operator*=(U const value) noexcept
65 {
66 x = static_cast<T>(x * value);
67 y = static_cast<T>(y * value);
68 z = static_cast<T>(z * value);
69 w = static_cast<T>(w * value);
70 return *this;
71 }
72 template <Primitive T>
73 template <Primitive U>
74 constexpr vec<4, T> &vec<4, T>::operator/=(U const value) noexcept
75 {
76 x = static_cast<T>(x / value);
77 y = static_cast<T>(y / value);
78 z = static_cast<T>(z / value);
79 w = static_cast<T>(w / value);
80 return *this;
81 }
82 template <Primitive T>
83 template <Primitive U>
84 constexpr vec<4, T> &vec<4, T>::operator%=(U const value) noexcept
85 {
86 x = static_cast<T>(x % value);
87 y = static_cast<T>(y % value);
88 z = static_cast<T>(z % value);
89 w = static_cast<T>(w % value);
90 return *this;
91 }
92 template <Primitive T>
93 template <AnyVec U>
94 constexpr vec<4, T> &vec<4, T>::operator+=(U const &other) noexcept requires(size == U::size)
95 {
96 x = static_cast<T>(x + other.x);
97 y = static_cast<T>(y + other.y);
98 z = static_cast<T>(z + other.z);
99 w = static_cast<T>(w + other.w);
100 return *this;
101 }
102 template <Primitive T>
103 template <AnyVec U>
104 constexpr vec<4, T> &vec<4, T>::operator-=(U const &other) noexcept requires(size == U::size)
105 {
106 x = static_cast<T>(x - other.x);
107 y = static_cast<T>(y - other.y);
108 z = static_cast<T>(z - other.z);
109 w = static_cast<T>(w - other.w);
110 return *this;
111 }
112 template <Primitive T>
113 template <AnyVec U>
114 constexpr vec<4, T> &vec<4, T>::operator*=(U const &other) noexcept requires(size == U::size)
115 {
116 x = static_cast<T>(x * other.x);
117 y = static_cast<T>(y * other.y);
118 z = static_cast<T>(z * other.z);
119 w = static_cast<T>(w * other.w);
120 return *this;
121 }
122 template <Primitive T>
123 template <AnyVec U>
124 constexpr vec<4, T> &vec<4, T>::operator/=(U const &other) noexcept requires(size == U::size)
125 {
126 x = static_cast<T>(x / other.x);
127 y = static_cast<T>(y / other.y);
128 z = static_cast<T>(z / other.z);
129 w = static_cast<T>(w / other.w);
130 return *this;
131 }
132 template <Primitive T>
133 template <AnyVec U>
134 constexpr vec<4, T> &vec<4, T>::operator%=(U const &other) noexcept requires(size == U::size)
135 {
136 x = static_cast<T>(x % other.x);
137 y = static_cast<T>(y % other.y);
138 z = static_cast<T>(z % other.z);
139 w = static_cast<T>(w % other.w);
140 return *this;
141 }
142 template <Primitive T>
143 [[nodiscard]] constexpr T &vec<4, T>::operator[](size_t i)
144 {
145 assert(i < size);
146 return data[i];
147 }
148 template <Primitive T>
149 [[nodiscard]] constexpr T const &vec<4, T>::operator[](size_t i) const
150 {
151 assert(i < size);
152 return data[i];
153 }
154
155 template <Primitive T>
156 template <Primitive _> // primitives
158 {
159 return 1;
160 }
161 template <Primitive T>
162 template <class V> // vectors
163 constexpr size_t vec<4, T>::get_parameter_pack_size()
164 {
165 return V::size;
166 }
167 template <Primitive T>
168 template <typename A, typename B, typename... C>
170 {
171 return get_parameter_pack_size<A>() + get_parameter_pack_size<B, C...>();
172 }
173
174 template <Primitive T>
175 template <Primitive U> // primitives
176 constexpr void vec<4, T>::unpack_data(size_t offset, U u)
177 {
178 data[offset] = static_cast<T>(u);
179 }
180 template <Primitive T>
181 template <class V> // vectors
182 constexpr void vec<4, T>::unpack_data(size_t offset, V vec)
183 {
184 for (size_t i = 0; i < V::size; i++)
185 {
186 data[offset + i] = static_cast<T>(vec[i]);
187 }
188 }
189 template <Primitive T>
190 template <typename A, typename B, typename... C>
191 constexpr void vec<4, T>::unpack_data(size_t offset, A a, B b, C... c)
192 {
193 unpack_data(offset, a);
194 offset += get_parameter_pack_size<A>();
195 unpack_data(offset, b, c...);
196 }
197}; // namespace mal_math
Contains mathematical utility functions and classes.
Definition of the mathematical vector with fixed size L and type T
Definition vecn.hpp:22
constexpr T & operator[](size_t i)
Overloaded subscript operator for non-const rvec.
Definition vecn.inl:133
constexpr vec< L, T > & operator%=(U const value) noexcept
Definition vecn.inl:73
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for primitive types.
Definition vecn.inl:146
constexpr vec< L, T > & operator*=(U const value) noexcept
Definition vecn.inl:53
constexpr void unpack_data(size_t offset, U u)
Unpacks a single primitive value into the vector data.
Definition vecn.hpp:134
constexpr vec< L, T > & operator/=(U const value) noexcept
Definition vecn.inl:63
constexpr vec()=default
Default constructor.
constexpr vec< L, T > & operator+=(U const value) noexcept
Definition vecn.inl:33
constexpr vec< L, T > & operator-=(U const value) noexcept
Definition vecn.inl:43
constexpr void reset() noexcept
Resets the vector to the zero vector.
Definition vecn.inl:23
Contains the definition of the vec<4, T> structure.