mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
vec2.hpp
Go to the documentation of this file.
1#pragma once
11#include "vec.hpp"
12
13#pragma warning(push)
14#pragma warning(disable : 4201)
15namespace mal_math
16{
21 template <Primitive T>
22 struct vec<2, T>
23 {
24 static_assert(!std::is_const_v<T>);
25 using type = T;
26 static constexpr size_t size = 2;
28 constexpr vec() = default;
30 template <Primitive U>
31 constexpr vec(U value);
33 template <Primitive A, Primitive B>
34 constexpr vec(A a, B b);
36 template <typename... U>
37 constexpr vec(U... data);
39 constexpr vec(std::array<T, size> const &arr) : data{ arr } {}
41 constexpr vec(std::array<T, size> &&arr) : data{ std::move(arr) } {}
43 constexpr static vec<2, T> zero() noexcept { return vec<2, T>(0); }
45 constexpr void reset() noexcept;
46
48 template <typename U>
49 constexpr vec<size, T> &operator=(_detail::rvec<size, U> const &b)
50 {
51 for (size_t i = 0; i < size; i++)
52 {
53 data[i] = b.data[i];
54 }
55 return *this;
56 }
58 template <typename U>
59 constexpr vec<size, T> &operator=(vec<size, U> const &b)
60 {
61 for (size_t i = 0; i < size; i++)
62 {
63 data[i] = b.data[i];
64 }
65 return *this;
66 }
68 [[nodiscard]] constexpr vec<2, T> const &operator+() const noexcept;
69
71 [[nodiscard]] constexpr vec<2, T> operator-() const noexcept;
72
73 template <Primitive U>
74 constexpr vec<2, T> &operator+=(U const value) noexcept;
75 template <Primitive U>
76 constexpr vec<2, T> &operator-=(U const value) noexcept;
77 template <Primitive U>
78 constexpr vec<2, T> &operator*=(U const value) noexcept;
79 template <Primitive U>
80 constexpr vec<2, T> &operator/=(U const value) noexcept;
81 template <Primitive U>
82 constexpr vec<2, T> &operator%=(U const value) noexcept;
83 template <AnyVec U>
84 constexpr vec<2, T> &operator+=(U const &other) noexcept requires(size == U::size);
85 template <AnyVec U>
86 constexpr vec<2, T> &operator-=(U const &other) noexcept requires(size == U::size);
87 template <AnyVec U>
88 constexpr vec<2, T> &operator*=(U const &other) noexcept requires(size == U::size);
89 template <AnyVec U>
90 constexpr vec<2, T> &operator/=(U const &other) noexcept requires(size == U::size);
91 template <AnyVec U>
92 constexpr vec<2, T> &operator%=(U const &other) noexcept requires(size == U::size);
93
95 [[nodiscard]] constexpr T &operator[](size_t i);
97 [[nodiscard]] constexpr T const &operator[](size_t i) const;
99 union
100 {
101 struct
102 {
103 union
104 {
105 T x, r, s, u;
106 };
107 union
108 {
109 T y, g, t, v;
110 };
111 };
112 std::array<T, 2> data;
113 };
114 static_assert(sizeof(data) == 2 * sizeof(T));
115
116 private:
122 template <Primitive _>
123 static constexpr size_t get_parameter_pack_size();
129 template <class V>
130 static constexpr size_t get_parameter_pack_size();
136 template <typename A, typename B, typename... C>
137 static constexpr size_t get_parameter_pack_size();
138
139
146 template <Primitive U>
147 constexpr void unpack_data(size_t offset, U u);
154 template <class V>
155 constexpr void unpack_data(size_t offset, V vec);
164 template <typename A, typename B, typename... C>
165 constexpr void unpack_data(size_t offset, A a, B b, C... c);
166 };
167}; // namespace mal_math
168#pragma warning(pop)
169#include "vec2.inl"
Concept to determine if a type is any kind of vector.
Concept that ensures a type is either floating point or integral.
Contains mathematical utility functions and classes.
constexpr mat< T::size.x, T::size.y, std::remove_const_t< typename T::type > > operator+(U const left, T const &right)
Adds a matrix to a primitive.
Definition mat_math.inl:105
STL namespace.
constexpr vec(std::array< T, size > &&arr)
Constructs a vec by moving data from a given array.
Definition vec2.hpp:41
static constexpr vec< 2, T > zero() noexcept
Returns a new zero-initialized vec.
Definition vec2.hpp:43
constexpr vec< size, T > & operator=(vec< size, U > const &b)
Assignment operator from another vec.
Definition vec2.hpp:59
constexpr void unpack_data(size_t offset, V vec)
Unpacks a vector into the matrix data.
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for vector types.
std::array< T, 2 > data
Array access to the elements.
Definition vec2.hpp:112
T type
Type of the vector's components.
Definition vec2.hpp:25
constexpr vec()=default
Default constructor.
constexpr vec(std::array< T, size > const &arr)
Constructs a vec from a given array.
Definition vec2.hpp:39
Definition of the mathematical vector with fixed size L and type T
Definition vecn.hpp:22
std::array< T, size > data
The underlying data of the vector.
Definition vecn.hpp:101
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for primitive types.
Definition vecn.inl:146
constexpr void unpack_data(size_t offset, U u)
Unpacks a single primitive value into the vector data.
Definition vecn.hpp:134
static constexpr size_t size
Number of elements in the vector.
Definition vecn.hpp:27
constexpr vec()=default
Default constructor.
constexpr void reset() noexcept
Resets the vector to the zero vector.
Definition vecn.inl:23