7 constexpr vec<4, T>::vec(U value) { x = y = z = w =
static_cast<T
>(value); }
9 template <Primitive A, Primitive B, Primitive C, Primitive D>
12 x =
static_cast<T
>(a);
13 y =
static_cast<T
>(b);
14 z =
static_cast<T
>(c);
15 w =
static_cast<T
>(d);
17 template <Primitive T>
18 template <
typename... U>
21 static_assert(get_parameter_pack_size<U...>() == size,
22 "You have provided wrong amount of data");
23 unpack_data(0, data...);
25 template <Primitive T>
31 template <Primitive T>
36 template <Primitive T>
42 template <Primitive T>
43 template <Primitive U>
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);
52 template <Primitive T>
53 template <Primitive U>
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);
62 template <Primitive T>
63 template <Primitive U>
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);
72 template <Primitive T>
73 template <Primitive U>
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);
82 template <Primitive T>
83 template <Primitive U>
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);
92 template <Primitive T>
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);
102 template <Primitive T>
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);
112 template <Primitive T>
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);
122 template <Primitive T>
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);
132 template <Primitive T>
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);
142 template <Primitive T>
148 template <Primitive T>
155 template <Primitive T>
156 template <Primitive _>
161 template <Primitive T>
167 template <Primitive T>
168 template <
typename A,
typename B,
typename... C>
171 return get_parameter_pack_size<A>() + get_parameter_pack_size<B, C...>();
174 template <Primitive T>
175 template <Primitive U>
178 data[offset] =
static_cast<T
>(u);
180 template <Primitive T>
184 for (
size_t i = 0; i < V::size; i++)
186 data[offset + i] =
static_cast<T
>(
vec[i]);
189 template <Primitive T>
190 template <
typename A,
typename B,
typename... C>
193 unpack_data(offset, a);
194 offset += get_parameter_pack_size<A>();
195 unpack_data(offset, b, c...);
Contains mathematical utility functions and classes.
Definition of the mathematical vector with fixed size L and type T
constexpr T & operator[](size_t i)
Overloaded subscript operator for non-const rvec.
constexpr vec< L, T > & operator%=(U const value) noexcept
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for primitive types.
constexpr vec< L, T > & operator*=(U const value) noexcept
constexpr void unpack_data(size_t offset, U u)
Unpacks a single primitive value into the vector data.
constexpr vec< L, T > & operator/=(U const value) noexcept
constexpr vec()=default
Default constructor.
constexpr vec< L, T > & operator+=(U const value) noexcept
constexpr vec< L, T > & operator-=(U const value) noexcept
constexpr void reset() noexcept
Resets the vector to the zero vector.
Contains the definition of the vec<4, T> structure.