mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
vec2.inl
Go to the documentation of this file.
1#pragma once
2#include "vec2.hpp"
3namespace mal_math
4{
5 template <Primitive T>
6 template <Primitive U>
7 constexpr vec<2, T>::vec(U value) { x = y = static_cast<T>(value); }
8 template <Primitive T>
9 template <Primitive A, Primitive B>
10 constexpr vec<2, T>::vec(A a, B b)
11 {
12 x = static_cast<T>(a);
13 y = static_cast<T>(b);
14 }
15 template <Primitive T>
16 template <typename... U>
17 constexpr vec<2, T>::vec(U... data)
18 {
19 static_assert(get_parameter_pack_size<U...>() == size,
20 "You have provided wrong amount of data");
21 unpack_data(0, data...);
22 }
23 template <Primitive T>
24 constexpr void vec<2, T>::reset() noexcept { x = y = 0; }
25
26 template <Primitive T>
27 [[nodiscard]] constexpr vec<2, T> const &vec<2, T>::operator+() const noexcept
28 {
29 return *this;
30 }
31
32 template <Primitive T>
33 [[nodiscard]] constexpr vec<2, T> vec<2, T>::operator-() const noexcept
34 {
35 return vec<2, T>(-static_cast<T>(x), -static_cast<T>(y));
36 }
37
38 template <Primitive T>
39 template <Primitive U>
40 constexpr vec<2, T> &vec<2, T>::operator+=(U const value) noexcept
41 {
42 x = static_cast<T>(x + value);
43 y = static_cast<T>(y + value);
44 return *this;
45 }
46 template <Primitive T>
47 template <Primitive U>
48 constexpr vec<2, T> &vec<2, T>::operator-=(U const value) noexcept
49 {
50 x = static_cast<T>(x - value);
51 y = static_cast<T>(y - value);
52 return *this;
53 }
54 template <Primitive T>
55 template <Primitive U>
56 constexpr vec<2, T> &vec<2, T>::operator*=(U const value) noexcept
57 {
58 x = static_cast<T>(x * value);
59 y = static_cast<T>(y * value);
60 return *this;
61 }
62 template <Primitive T>
63 template <Primitive U>
64 constexpr vec<2, T> &vec<2, T>::operator/=(U const value) noexcept
65 {
66 x = static_cast<T>(x / value);
67 y = static_cast<T>(y / value);
68 return *this;
69 }
70 template <Primitive T>
71 template <Primitive U>
72 constexpr vec<2, T> &vec<2, T>::operator%=(U const value) noexcept
73 {
74 x = static_cast<T>(x % value);
75 y = static_cast<T>(y % value);
76 return *this;
77 }
78 template <Primitive T>
79 template <AnyVec U>
80 constexpr vec<2, T> &vec<2, T>::operator+=(U const &other) noexcept requires(size == U::size)
81 {
82 x = static_cast<T>(x + other.x);
83 y = static_cast<T>(y + other.y);
84 return *this;
85 }
86 template <Primitive T>
87 template <AnyVec U>
88 constexpr vec<2, T> &vec<2, T>::operator-=(U const &other) noexcept requires(size == U::size)
89 {
90 x = static_cast<T>(x - other.x);
91 y = static_cast<T>(y - other.y);
92 return *this;
93 }
94 template <Primitive T>
95 template <AnyVec U>
96 constexpr vec<2, T> &vec<2, T>::operator*=(U const &other) noexcept requires(size == U::size)
97 {
98 x = static_cast<T>(x * other.x);
99 y = static_cast<T>(y * other.y);
100 return *this;
101 }
102 template <Primitive T>
103 template <AnyVec U>
104 constexpr vec<2, T> &vec<2, 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 return *this;
109 }
110 template <Primitive T>
111 template <AnyVec U>
112 constexpr vec<2, T> &vec<2, T>::operator%=(U const &other) noexcept requires(size == U::size)
113 {
114 x = static_cast<T>(x % other.x);
115 y = static_cast<T>(y % other.y);
116 return *this;
117 }
118 template <Primitive T>
119 [[nodiscard]] constexpr T &vec<2, T>::operator[](size_t i)
120 {
121 assert(i < size);
122 return data[i];
123 }
124 template <Primitive T>
125 [[nodiscard]] constexpr T const &vec<2, T>::operator[](size_t i) const
126 {
127 assert(i < size);
128 return data[i];
129 }
130
131 template <Primitive T>
132 template <Primitive _> // primitives
134 {
135 return 1;
136 }
137 template <Primitive T>
138 template <class V> // vectors
139 constexpr size_t vec<2, T>::get_parameter_pack_size()
140 {
141 return V::size;
142 }
143 template <Primitive T>
144 template <typename A, typename B, typename... C>
146 {
147 return get_parameter_pack_size<A>() + get_parameter_pack_size<B, C...>();
148 }
149
150 template <Primitive T>
151 template <Primitive U> // primitives
152 constexpr void vec<2, T>::unpack_data(size_t offset, U u)
153 {
154 data[offset] = static_cast<T>(u);
155 }
156 template <Primitive T>
157 template <class V> // vectors
158 constexpr void vec<2, T>::unpack_data(size_t offset, V vec)
159 {
160 for (size_t i = 0; i < V::size; i++)
161 {
162 data[offset + i] = static_cast<T>(vec[i]);
163 }
164 }
165 template <Primitive T>
166 template <typename A, typename B, typename... C>
167 constexpr void vec<2, T>::unpack_data(size_t offset, A a, B b, C... c)
168 {
169 unpack_data(offset, a);
170 offset += get_parameter_pack_size<A>();
171 unpack_data(offset, b, c...);
172 }
173} // 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
Defines a 2D vector and provides its operations.