9 template <Primitive A, Primitive B>
12 x =
static_cast<T
>(a);
13 y =
static_cast<T
>(b);
15 template <Primitive T>
16 template <
typename... U>
19 static_assert(get_parameter_pack_size<U...>() == size,
20 "You have provided wrong amount of data");
21 unpack_data(0, data...);
23 template <Primitive T>
26 template <Primitive T>
32 template <Primitive T>
35 return vec<2, T>(-
static_cast<T
>(x), -
static_cast<T
>(y));
38 template <Primitive T>
39 template <Primitive U>
42 x =
static_cast<T
>(x + value);
43 y =
static_cast<T
>(y + value);
46 template <Primitive T>
47 template <Primitive U>
50 x =
static_cast<T
>(x - value);
51 y =
static_cast<T
>(y - value);
54 template <Primitive T>
55 template <Primitive U>
58 x =
static_cast<T
>(x * value);
59 y =
static_cast<T
>(y * value);
62 template <Primitive T>
63 template <Primitive U>
66 x =
static_cast<T
>(x / value);
67 y =
static_cast<T
>(y / value);
70 template <Primitive T>
71 template <Primitive U>
74 x =
static_cast<T
>(x % value);
75 y =
static_cast<T
>(y % value);
78 template <Primitive T>
82 x =
static_cast<T
>(x + other.x);
83 y =
static_cast<T
>(y + other.y);
86 template <Primitive T>
90 x =
static_cast<T
>(x - other.x);
91 y =
static_cast<T
>(y - other.y);
94 template <Primitive T>
98 x =
static_cast<T
>(x * other.x);
99 y =
static_cast<T
>(y * other.y);
102 template <Primitive T>
106 x =
static_cast<T
>(x / other.x);
107 y =
static_cast<T
>(y / other.y);
110 template <Primitive T>
114 x =
static_cast<T
>(x % other.x);
115 y =
static_cast<T
>(y % other.y);
118 template <Primitive T>
124 template <Primitive T>
131 template <Primitive T>
132 template <Primitive _>
137 template <Primitive T>
143 template <Primitive T>
144 template <
typename A,
typename B,
typename... C>
147 return get_parameter_pack_size<A>() + get_parameter_pack_size<B, C...>();
150 template <Primitive T>
151 template <Primitive U>
154 data[offset] =
static_cast<T
>(u);
156 template <Primitive T>
160 for (
size_t i = 0; i < V::size; i++)
162 data[offset + i] =
static_cast<T
>(
vec[i]);
165 template <Primitive T>
166 template <
typename A,
typename B,
typename... C>
169 unpack_data(offset, a);
170 offset += get_parameter_pack_size<A>();
171 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.
Defines a 2D vector and provides its operations.