9 template <Primitive A, Primitive B, Primitive C>
12 x =
static_cast<T
>(a);
13 y =
static_cast<T
>(b);
14 z =
static_cast<T
>(c);
16 template <Primitive T>
17 template <
typename... U>
20 static_assert(get_parameter_pack_size<U...>() == size,
21 "You have provided wrong amount of data");
22 unpack_data(0, data...);
24 template <Primitive T>
30 template <Primitive T>
35 template <Primitive T>
41 template <Primitive T>
42 template <Primitive U>
45 x =
static_cast<T
>(x + value);
46 y =
static_cast<T
>(y + value);
47 z =
static_cast<T
>(z + value);
50 template <Primitive T>
51 template <Primitive U>
54 x =
static_cast<T
>(x - value);
55 y =
static_cast<T
>(y - value);
56 z =
static_cast<T
>(z - value);
59 template <Primitive T>
60 template <Primitive U>
63 x =
static_cast<T
>(x * value);
64 y =
static_cast<T
>(y * value);
65 z =
static_cast<T
>(z * value);
68 template <Primitive T>
69 template <Primitive U>
72 x =
static_cast<T
>(x / value);
73 y =
static_cast<T
>(y / value);
74 z =
static_cast<T
>(z / value);
77 template <Primitive T>
78 template <Primitive U>
81 x =
static_cast<T
>(x % value);
82 y =
static_cast<T
>(y % value);
83 z =
static_cast<T
>(z % value);
87 template <Primitive T>
91 x =
static_cast<T
>(x + other.x);
92 y =
static_cast<T
>(y + other.y);
93 z =
static_cast<T
>(z + other.z);
96 template <Primitive T>
100 x =
static_cast<T
>(x - other.x);
101 y =
static_cast<T
>(y - other.y);
102 z =
static_cast<T
>(z - other.z);
105 template <Primitive T>
109 x =
static_cast<T
>(x * other.x);
110 y =
static_cast<T
>(y * other.y);
111 z =
static_cast<T
>(z * other.z);
114 template <Primitive T>
118 x =
static_cast<T
>(x / other.x);
119 y =
static_cast<T
>(y / other.y);
120 z =
static_cast<T
>(z / other.z);
124 template <Primitive T>
128 x =
static_cast<T
>(x % other.x);
129 y =
static_cast<T
>(y % other.y);
130 z =
static_cast<T
>(z % other.z);
133 template <Primitive T>
139 template <Primitive T>
146 template <Primitive T>
147 template <Primitive _>
152 template <Primitive T>
158 template <Primitive T>
159 template <
typename A,
typename B,
typename... C>
162 return get_parameter_pack_size<A>() + get_parameter_pack_size<B, C...>();
165 template <Primitive T>
166 template <Primitive U>
169 data[offset] =
static_cast<T
>(u);
171 template <Primitive T>
175 for (
size_t i = 0; i < V::size; i++)
177 data[offset + i] =
static_cast<T
>(
vec[i]);
180 template <Primitive T>
181 template <
typename A,
typename B,
typename... C>
184 unpack_data(offset, a);
185 offset += get_parameter_pack_size<A>();
186 unpack_data(offset, b, c...);
189 template <Primitive T, Primitive U>
193 left.y *right.z - right.y * left.z,
194 left.z *right.x - right.z * left.x,
195 left.x *right.y - right.x * left.y};
Contains mathematical utility functions and classes.
constexpr vec< 3, T > cross(qua< T > const &left, vec< 3, U > const &right) noexcept
Cross product between quaternion and vector.
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.
Header file for the 3D vector definition.