mal-math
C++20 mathematics library.
|
Represents a 3D vector of a given primitive type. More...
#include "vec3.hpp"
Public Types | |
using | type = T |
Type of the vector elements. | |
Public Member Functions | |
constexpr | vec ()=default |
Default constructor. | |
template<Primitive U> | |
constexpr | vec (U value) |
Constructor initializing all elements to the given value. | |
template<Primitive A, Primitive B, Primitive C> | |
constexpr | vec (A a, B b, C c) |
Constructor for initializing the vector with three values. | |
template<typename... U> | |
constexpr | vec (U... data) |
Variadic constructor. | |
constexpr | vec (std::array< T, size > const &arr) |
Constructor from std::array. | |
constexpr | vec (std::array< T, size > &&arr) |
Move constructor from std::array. | |
constexpr void | reset () noexcept |
Resets the vector to the zero vector. | |
template<typename U > | |
constexpr vec< size, T > & | operator= (_detail::rvec< size, U > const &b) |
Overloaded assignment operator. | |
template<typename U > | |
constexpr vec< size, T > & | operator= (vec< size, U > const &b) |
Overloaded assignment operator for another vec object. | |
constexpr vec< 3, T > const & | operator+ () const noexcept |
Overloaded unary plus operator. | |
constexpr vec< 3, T > | operator- () const noexcept |
Overloaded unary minus operator. | |
template<Primitive U> | |
constexpr vec< 3, T > & | operator+= (U const value) noexcept |
template<Primitive U> | |
constexpr vec< 3, T > & | operator-= (U const value) noexcept |
template<Primitive U> | |
constexpr vec< 3, T > & | operator*= (U const value) noexcept |
template<Primitive U> | |
constexpr vec< 3, T > & | operator/= (U const value) noexcept |
template<Primitive U> | |
constexpr vec< 3, T > & | operator%= (U const value) noexcept |
template<AnyVec U> requires (size == U::size) | |
constexpr vec< 3, T > & | operator+= (U const &other) noexcept |
template<AnyVec U> requires (size == U::size) | |
constexpr vec< 3, T > & | operator-= (U const &other) noexcept |
template<AnyVec U> requires (size == U::size) | |
constexpr vec< 3, T > & | operator*= (U const &other) noexcept |
template<AnyVec U> requires (size == U::size) | |
constexpr vec< 3, T > & | operator/= (U const &other) noexcept |
template<AnyVec U> requires (size == U::size) | |
constexpr vec< 3, T > & | operator%= (U const &other) noexcept |
constexpr T & | operator[] (size_t i) |
Overloaded subscript operator for non-const rvec. | |
constexpr T const & | operator[] (size_t i) const |
Overloaded subscript operator for const rvec. | |
Static Public Member Functions | |
static constexpr vec< 3, T > | zero () noexcept |
Returns a zero vector. | |
Public Attributes | |
union mal_math::vec< 3, T >:: { ... } | |
Union allowing multiple ways to access the vector elements. | |
Static Public Attributes | |
static constexpr size_t | size = 3 |
Number of elements in the vector. | |
Private Member Functions | |
template<Primitive U> | |
constexpr void | unpack_data (size_t offset, U u) |
Unpacks a single primitive value into the vector data. | |
template<class V > | |
constexpr void | unpack_data (size_t offset, V vec) |
Unpacks a vector into the matrix data. | |
template<typename A , typename B , typename... C> | |
constexpr void | unpack_data (size_t offset, A a, B b, C... c) |
Recursively unpacks multiple values into the vector data. | |
Static Private Member Functions | |
template<Primitive _> | |
static constexpr size_t | get_parameter_pack_size () |
Determines the size of a parameter pack for primitive types. | |
template<class V > | |
static constexpr size_t | get_parameter_pack_size () |
Determines the size of a parameter pack for vector types. | |
template<typename A , typename B , typename... C> | |
static constexpr size_t | get_parameter_pack_size () |
Determines the size of a parameter pack for a mixed set of types. | |
Represents a 3D vector of a given primitive type.
T | The primitive type of the vector. |
using mal_math::vec< 3, T >::type = T |
|
constexprdefault |
Default constructor.
|
constexpr |
|
inlineconstexpr |
|
inlineconstexpr |
|
staticconstexprprivate |
|
staticconstexprprivate |
Determines the size of a parameter pack for vector types.
|
staticconstexprprivate |
|
constexprnoexcept |
|
constexprnoexcept |
|
constexprnoexcept |
|
constexprnoexcept |
|
nodiscardconstexprnoexcept |
|
constexprnoexcept |
|
constexprnoexcept |
|
nodiscardconstexprnoexcept |
|
constexprnoexcept |
|
constexprnoexcept |
|
constexprnoexcept |
|
constexprnoexcept |
|
inlineconstexpr |
|
inlineconstexpr |
|
nodiscardconstexpr |
|
nodiscardconstexpr |
|
constexprnoexcept |
|
constexprprivate |
|
constexprprivate |
|
constexprprivate |
Unpacks a vector into the matrix data.
offset | The position to start unpacking in the vector data. |
vec | The vector to unpack. |
|
inlinestaticconstexprnoexcept |
union mal_math::vec< 3, T > { ... } mal_math::vec< 3, T > |
Union allowing multiple ways to access the vector elements.
T mal_math::vec< 3, T >::b |
std::array<T, 3> mal_math::vec< 3, T >::data |
T mal_math::vec< 3, T >::g |
T mal_math::vec< 3, T >::p |
T mal_math::vec< 3, T >::r |
T mal_math::vec< 3, T >::s |
|
staticconstexpr |
T mal_math::vec< 3, T >::t |
T mal_math::vec< 3, T >::x |
T mal_math::vec< 3, T >::x_anonymous_padding_ |
vec<2, T> mal_math::vec< 3, T >::xy |
T mal_math::vec< 3, T >::y |
vec<2, T> mal_math::vec< 3, T >::yz |
T mal_math::vec< 3, T >::z |