mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
rvec2.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "vec.hpp"
12#pragma warning(push)
13#pragma warning(disable : 4201)
14namespace mal_math::_detail
15{
23 template <Primitive T>
24 struct rvec<2, T>
25 {
26 using type = T;
27 static constexpr size_t size = 2;
28
30 explicit constexpr rvec(T a, T b) : x{ a }, y{ b } {}
32 template <AnyVec V>
33 explicit constexpr rvec(V &other) requires(V::size >= size) : x{ other.x }, y{ other.y } {}
35 template <AnyVec V>
36 explicit constexpr rvec(V const &other) requires(V::size >= size && std::is_const_v<typename V::type>) : x{ other.x }, y{ other.y } {}
38 template <AnyVec U>
39 static constexpr rvec<2, T> from_vec(U &other) requires(U::size >= 2) { return rvec<2, T>{other.x, other.y}; }
41 template <AnyVec U>
42 static constexpr rvec<2, T> from_vec(U const &other) requires(U::size >= 2) { return rvec<2, T>{other.x, other.y}; }
44 constexpr void reset() noexcept;
45
47 template <typename U>
48 constexpr rvec<size, T> &operator=(rvec<size, U> const &b)
49 {
50 for (size_t i = 0; i < size; i++)
51 {
52 data[i] = b.data[i];
53 }
54 return *this;
55 }
57 template <typename U>
59 {
60 for (size_t i = 0; i < size; i++)
61 {
62 data[i] = b.data[i];
63 }
64 return *this;
65 }
66
68 [[nodiscard]] constexpr rvec<2, T> const &operator+() const noexcept;
69
71 [[nodiscard]] constexpr vec<2, T> operator-() const noexcept;
72
73 // Arithmetic assignment operators with primitives and vectors.
74 template <Primitive U>
75 constexpr rvec<2, T> &operator+=(U const value) noexcept;
76 template <Primitive U>
77 constexpr rvec<2, T> &operator-=(U const value) noexcept;
78 template <Primitive U>
79 constexpr rvec<2, T> &operator*=(U const value) noexcept;
80 template <Primitive U>
81 constexpr rvec<2, T> &operator/=(U const value) noexcept;
82 template <Primitive U>
83 constexpr rvec<2, T> &operator%=(U const value) noexcept;
84 template <AnyVec U>
85 constexpr rvec<2, T> &operator+=(U const &other) noexcept requires(size == U::size);
86 template <AnyVec U>
87 constexpr rvec<2, T> &operator-=(U const &other) noexcept requires(size == U::size);
88 template <AnyVec U>
89 constexpr rvec<2, T> &operator*=(U const &other) noexcept requires(size == U::size);
90 template <AnyVec U>
91 constexpr rvec<2, T> &operator/=(U const &other) noexcept requires(size == U::size);
92 template <AnyVec U>
93 constexpr rvec<2, T> &operator%=(U const &other) noexcept requires(size == U::size);
94
96 [[nodiscard]] constexpr T &operator[](size_t i);
98 [[nodiscard]] constexpr T const &operator[](size_t i) const;
99
101 constexpr explicit operator rvec<2, const T>() const noexcept { return rvec<2, const T>{x, y}; }
103 union
104 {
105 struct
106 {
107 union
108 {
110 };
111 union
112 {
114 };
115 };
116 std::array<_detail::primitive_reference_wrapper<T>, 2> data;
117 };
118 static_assert(sizeof(data) == 2 * sizeof(_detail::primitive_reference_wrapper<T>));
119 };
120}; // namespace mal_math
121#pragma warning(pop)
122#include "rvec2.inl"
Reference wrapper for primitives which does not allow rebinding after instantiation.
Concept to determine if a type is any kind of vector.
Concept that ensures a type is either floating point or integral.
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
constexpr rvec(V const &other)
Templated constructor from another vector type (const version).
Definition rvec2.hpp:36
static constexpr rvec< 2, T > from_vec(U const &other)
Templated factory method to create an rvec<2, T> from another vector type (const version).
Definition rvec2.hpp:42
constexpr rvec< size, T > & operator=(vec< size, U > const &b)
Assignment operator from a vec of same size.
Definition rvec2.hpp:58
_detail::primitive_reference_wrapper< T > r
Definition rvec2.hpp:109
constexpr rvec(V &other)
Templated constructor from another vector type (non-const version).
Definition rvec2.hpp:33
static constexpr rvec< 2, T > from_vec(U &other)
Templated factory method to create an rvec<2, T> from another vector type (non-const version).
Definition rvec2.hpp:39
std::array< _detail::primitive_reference_wrapper< T >, 2 > data
Array access to the elements.
Definition rvec2.hpp:116
constexpr rvec(T a, T b)
Constructor from two primitive values.
Definition rvec2.hpp:30
T type
The underlying primitive type.
Definition rvec2.hpp:26
_detail::primitive_reference_wrapper< T > g
Definition rvec2.hpp:113
Internal detail definition of a reference vector with fixed size L and type T
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