mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
rvec3.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "vec.hpp"
13#pragma warning(push)
14#pragma warning(disable : 4201)
15namespace mal_math::_detail
16{
22 template <Primitive T>
23 struct rvec<3, T>
24 {
25 using type = T;
26 static constexpr size_t size = 3;
28 explicit constexpr rvec(T &a, T &b, T &c) : x{ a }, y{ b }, z{ c } {}
30 template <AnyVec V>
31 explicit constexpr rvec(V &other) requires(V::size >= size) : x{ other.x }, y{ other.y }, z{ other.z } {}
33 template <AnyVec V>
34 explicit constexpr rvec(V const &other) requires(V::size >= size && std::is_const_v<typename V::type>) : x{ other.x }, y{ other.y }, z{ other.z } {}
36 template <AnyVec U>
37 static constexpr rvec<3, T> from_vec(U &other) requires(U::size >= 3) { return rvec<3, T>(other.x, other.y, other.z); }
39 template <AnyVec U>
40 static constexpr rvec<3, T> from_vec(U const &other) requires(U::size >= 3) { return rvec<3, T>(other.x, other.y, other.z); }
42 constexpr void reset() noexcept;
44 template <typename U>
45 constexpr rvec<size, T> &operator=(rvec<size, U> const &b)
46 {
47 for (size_t i = 0; i < size; i++)
48 {
49 data[i] = b.data[i];
50 }
51 return *this;
52 }
54 template <typename U>
56 {
57 for (size_t i = 0; i < size; i++)
58 {
59 data[i] = b.data[i];
60 }
61 return *this;
62 }
63
65 [[nodiscard]] constexpr rvec<3, T> const &operator+() const noexcept;
67 [[nodiscard]] constexpr vec<3, T> operator-() const noexcept;
68
69 template <Primitive U>
70 constexpr rvec<3, T> &operator+=(U const value) noexcept;
71 template <Primitive U>
72 constexpr rvec<3, T> &operator-=(U const value) noexcept;
73 template <Primitive U>
74 constexpr rvec<3, T> &operator*=(U const value) noexcept;
75 template <Primitive U>
76 constexpr rvec<3, T> &operator/=(U const value) noexcept;
77 template <Primitive U>
78 constexpr rvec<3, T> &operator%=(U const value) noexcept;
79 template <AnyVec U>
80 constexpr rvec<3, T> &operator+=(U const &other) noexcept requires(size == U::size);
81 template <AnyVec U>
82 constexpr rvec<3, T> &operator-=(U const &other) noexcept requires(size == U::size);
83 template <AnyVec U>
84 constexpr rvec<3, T> &operator*=(U const &other) noexcept requires(size == U::size);
85 template <AnyVec U>
86 constexpr rvec<3, T> &operator/=(U const &other) noexcept requires(size == U::size);
87 template <AnyVec U>
88 constexpr rvec<3, T> &operator%=(U const &other) noexcept requires(size == U::size);
89
91 [[nodiscard]] constexpr T &operator[](size_t i);
93 [[nodiscard]] constexpr T const &operator[](size_t i) const;
94
96 constexpr explicit operator rvec<3, const T>() const noexcept { return rvec<3, const T>{x, y, z}; }
97
104 template <size_t n = size>
105 [[nodiscard]] constexpr rvec<n, T> as_rvec() noexcept requires(n >= 2 && n <= size);
106
114 template <size_t n = size, Primitive U = T>
115 [[nodiscard]] constexpr vec<n, std::remove_const_t<U>> as_vec() const noexcept requires(n >= 2 && n <= size);
116
123 template <size_t n = size>
124 [[nodiscard]] constexpr rvec<n, const T> as_crvec() const noexcept requires(n >= 2 && n <= size);
126 union
127 {
128 struct
129 {
130 union
131 {
133 };
134 union
135 {
137 };
138 union
139 {
141 };
142 };
143 std::array<_detail::primitive_reference_wrapper<T>, 3> data;
144 };
145 static_assert(sizeof(data) == 3 * sizeof(_detail::primitive_reference_wrapper<T>));
146 };
147}; // namespace mal_math
148#pragma warning(pop)
149#include "rvec3.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 vec< n, typename Vector::type > const & as_crvec(Vector const &v) noexcept
Convert a given const vector to a const reference of vec with specified size and type.
Definition vec_math.inl:67
constexpr vec< n, U > as_vec(Vector const &v) noexcept
Create a new vector of a specified size and type from the given vector.
Definition vec_math.inl:34
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 vec< n, typename Vector::type > & as_rvec(Vector &v) noexcept
Convert a given vector to a reference of vec with specified size and type.
Definition vec_math.inl:56
STL namespace.
static constexpr rvec< 3, T > from_vec(U &other)
Static method to construct from another vector with size check.
Definition rvec3.hpp:37
T type
Alias for the data type.
Definition rvec3.hpp:25
constexpr rvec(T &a, T &b, T &c)
Constructor initializing vector with three values.
Definition rvec3.hpp:28
_detail::primitive_reference_wrapper< T > r
Definition rvec3.hpp:132
_detail::primitive_reference_wrapper< T > b
Definition rvec3.hpp:140
std::array< _detail::primitive_reference_wrapper< T >, 3 > data
Definition rvec3.hpp:143
constexpr rvec(V const &other)
Construct from a constant vector with size and constness check.
Definition rvec3.hpp:34
constexpr rvec< size, T > & operator=(vec< size, U > const &b)
Overloaded assignment operator for copying from vec.
Definition rvec3.hpp:55
static constexpr rvec< 3, T > from_vec(U const &other)
Static method to construct from a constant vector with size check.
Definition rvec3.hpp:40
_detail::primitive_reference_wrapper< T > g
Definition rvec3.hpp:136
constexpr rvec(V &other)
Construct from another vector with size check.
Definition rvec3.hpp:31
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