mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
rvec2.inl
Go to the documentation of this file.
1#pragma once
2#include "rvec2.hpp"
3namespace mal_math::_detail
4{
5 template <Primitive T>
6 constexpr void rvec<2, T>::reset() noexcept { x = y = 0; }
7
8 template <Primitive T>
9 [[nodiscard]] constexpr rvec<2, T> const &rvec<2, T>::operator+() const noexcept
10 {
11 return *this;
12 }
13
14 template <Primitive T>
15 [[nodiscard]] constexpr vec<2, T> rvec<2, T>::operator-() const noexcept
16 {
17 return vec<2, T>(-static_cast<T>(x), -static_cast<T>(y));
18 }
19
20 template <Primitive T>
21 template <Primitive U>
22 constexpr rvec<2, T> &rvec<2, T>::operator+=(U const value) noexcept
23 {
24 x = static_cast<T>(x + value);
25 y = static_cast<T>(y + value);
26 return *this;
27 }
28 template <Primitive T>
29 template <Primitive U>
30 constexpr rvec<2, T> &rvec<2, T>::operator-=(U const value) noexcept
31 {
32 x = static_cast<T>(x - value);
33 y = static_cast<T>(y - value);
34 return *this;
35 }
36 template <Primitive T>
37 template <Primitive U>
38 constexpr rvec<2, T> &rvec<2, T>::operator*=(U const value) noexcept
39 {
40 x = static_cast<T>(x * value);
41 y = static_cast<T>(y * value);
42 return *this;
43 }
44 template <Primitive T>
45 template <Primitive U>
46 constexpr rvec<2, T> &rvec<2, T>::operator/=(U const value) noexcept
47 {
48 x = static_cast<T>(x / value);
49 y = static_cast<T>(y / value);
50 return *this;
51 }
52 template <Primitive T>
53 template <Primitive U>
54 constexpr rvec<2, T> &rvec<2, T>::operator%=(U const value) noexcept
55 {
56 x = static_cast<T>(x % value);
57 y = static_cast<T>(y % value);
58 return *this;
59 }
60 template <Primitive T>
61 template <AnyVec U>
62 constexpr rvec<2, T> &rvec<2, T>::operator+=(U const &other) noexcept requires(size == U::size)
63 {
64 x = static_cast<T>(x + other.x);
65 y = static_cast<T>(y + other.y);
66 return *this;
67 }
68 template <Primitive T>
69 template <AnyVec U>
70 constexpr rvec<2, T> &rvec<2, T>::operator-=(U const &other) noexcept requires(size == U::size)
71 {
72 x = static_cast<T>(x - other.x);
73 y = static_cast<T>(y - other.y);
74 return *this;
75 }
76 template <Primitive T>
77 template <AnyVec U>
78 constexpr rvec<2, T> &rvec<2, T>::operator*=(U const &other) noexcept requires(size == U::size)
79 {
80 x = static_cast<T>(x * other.x);
81 y = static_cast<T>(y * other.y);
82 return *this;
83 }
84 template <Primitive T>
85 template <AnyVec U>
86 constexpr rvec<2, T> &rvec<2, T>::operator/=(U const &other) noexcept requires(size == U::size)
87 {
88 x = static_cast<T>(x / other.x);
89 y = static_cast<T>(y / other.y);
90 return *this;
91 }
92 template <Primitive T>
93 template <AnyVec U>
94 constexpr rvec<2, T> &rvec<2, T>::operator%=(U const &other) noexcept requires(size == U::size)
95 {
96 x = static_cast<T>(x % other.x);
97 y = static_cast<T>(y % other.y);
98 return *this;
99 }
100 template <Primitive T>
101 [[nodiscard]] constexpr T &rvec<2, T>::operator[](size_t i)
102 {
103 assert(i < size);
104 return data[i];
105 }
106 template <Primitive T>
107 [[nodiscard]] constexpr T const &rvec<2, T>::operator[](size_t i) const
108 {
109 assert(i < size);
110 return data[i];
111 }
112} // namespace mal_math
Definitions for the rvec<2, T> specialized template representing 2D vectors with reference-like seman...
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