mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
vec3.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
16{
22 template <Primitive T>
23 struct vec<3, T>
24 {
25 static_assert(!std::is_const_v<T>);
27 using type = T;
29 static constexpr size_t size = 3;
31 constexpr vec() = default;
38 template <Primitive U>
39 constexpr vec(U value);
50 template <Primitive A, Primitive B, Primitive C>
51 constexpr vec(A a, B b, C c);
58 template <typename... U>
59 constexpr vec(U... data);
61 constexpr vec(std::array<T, size> const &arr) : data{ arr } {}
63 constexpr vec(std::array<T, size> &&arr) : data{ std::move(arr) } {}
65 constexpr static vec<3, T> zero() noexcept { return vec<3, T>(0); }
67 constexpr void reset() noexcept;
68
70 template <typename U>
71 constexpr vec<size, T> &operator=(_detail::rvec<size, U> const &b)
72 {
73 for (size_t i = 0; i < size; i++)
74 {
75 data[i] = b.data[i];
76 }
77 return *this;
78 }
80 template <typename U>
81 constexpr vec<size, T> &operator=(vec<size, U> const &b)
82 {
83 for (size_t i = 0; i < size; i++)
84 {
85 data[i] = b.data[i];
86 }
87 return *this;
88 }
89
91 [[nodiscard]] constexpr vec<3, T> const &operator+() const noexcept;
93 [[nodiscard]] constexpr vec<3, T> operator-() const noexcept;
94
95 template <Primitive U>
96 constexpr vec<3, T> &operator+=(U const value) noexcept;
97 template <Primitive U>
98 constexpr vec<3, T> &operator-=(U const value) noexcept;
99 template <Primitive U>
100 constexpr vec<3, T> &operator*=(U const value) noexcept;
101 template <Primitive U>
102 constexpr vec<3, T> &operator/=(U const value) noexcept;
103 template <Primitive U>
104 constexpr vec<3, T> &operator%=(U const value) noexcept;
105 template <AnyVec U>
106 constexpr vec<3, T> &operator+=(U const &other) noexcept requires(size == U::size);
107 template <AnyVec U>
108 constexpr vec<3, T> &operator-=(U const &other) noexcept requires(size == U::size);
109 template <AnyVec U>
110 constexpr vec<3, T> &operator*=(U const &other) noexcept requires(size == U::size);
111 template <AnyVec U>
112 constexpr vec<3, T> &operator/=(U const &other) noexcept requires(size == U::size);
113 template <AnyVec U>
114 constexpr vec<3, T> &operator%=(U const &other) noexcept requires(size == U::size);
115
117 [[nodiscard]] constexpr T &operator[](size_t i);
119 [[nodiscard]] constexpr T const &operator[](size_t i) const;
121 union
122 {
123 struct
124 {
125 union
126 {
127 T x, r, s;
128 };
129 union
130 {
131 T y, g, t;
132 };
133 union
134 {
135 T z, b, p;
136 };
137 };
138 std::array<T, 3> data;
140 struct
141 {
144 };
145 };
146 static_assert(sizeof(data) == 3 * sizeof(T));
147
148 private:
154 template <Primitive _>
155 static constexpr size_t get_parameter_pack_size();
161 template <class V>
162 static constexpr size_t get_parameter_pack_size();
168 template <typename A, typename B, typename... C>
169 static constexpr size_t get_parameter_pack_size();
170
171
178 template <Primitive U>
179 constexpr void unpack_data(size_t offset, U u);
186 template <class V>
187 constexpr void unpack_data(size_t offset, V vec);
196 template <typename A, typename B, typename... C>
197 constexpr void unpack_data(size_t offset, A a, B b, C... c);
198 };
199
209 template <Primitive T, Primitive U>
210 constexpr vec<3, T> cross(vec<3, T> const &left, vec<3, U> const &right);
211}; // namespace mal_math
212
213#pragma warning(pop)
214#include "vec3.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
constexpr vec< 3, T > cross(qua< T > const &left, vec< 3, U > const &right) noexcept
Cross product between quaternion and vector.
STL namespace.
vec< 2, T > xy
Definition vec3.hpp:139
T type
Type of the vector elements.
Definition vec3.hpp:27
static constexpr vec< 3, T > zero() noexcept
Returns a zero vector.
Definition vec3.hpp:65
constexpr vec(std::array< T, size > const &arr)
Constructor from std::array.
Definition vec3.hpp:61
std::array< T, 3 > data
Definition vec3.hpp:138
constexpr vec(std::array< T, size > &&arr)
Move constructor from std::array.
Definition vec3.hpp:63
constexpr void unpack_data(size_t offset, V vec)
Unpacks a vector into the matrix data.
constexpr vec()=default
Default constructor.
constexpr vec< size, T > & operator=(vec< size, U > const &b)
Overloaded assignment operator for another vec object.
Definition vec3.hpp:81
static constexpr size_t get_parameter_pack_size()
Determines the size of a parameter pack for vector types.
vec< 2, T > yz
Definition vec3.hpp:143
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