mal-math
C++20 mathematics library.
|
2D vector template class. More...
#include "vec2.hpp"
Public Types | |
using | type = T |
Type of the vector's components. | |
Public Member Functions | |
constexpr | vec ()=default |
Default constructor. | |
template<Primitive U> | |
constexpr | vec (U value) |
Constructs a vec with both components set to value. | |
template<Primitive A, Primitive B> | |
constexpr | vec (A a, B b) |
Constructs a vec with given values for x and y components. | |
template<typename... U> | |
constexpr | vec (U... data) |
Constructs a vec from a variadic list of values. | |
constexpr | vec (std::array< T, size > const &arr) |
Constructs a vec from a given array. | |
constexpr | vec (std::array< T, size > &&arr) |
Constructs a vec by moving data from a given array. | |
constexpr void | reset () noexcept |
Resets the vec to zeroes. | |
template<typename U > | |
constexpr vec< size, T > & | operator= (_detail::rvec< size, U > const &b) |
Assignment operator from a rvec. | |
template<typename U > | |
constexpr vec< size, T > & | operator= (vec< size, U > const &b) |
Assignment operator from another vec. | |
constexpr vec< 2, T > const & | operator+ () const noexcept |
Unary plus operator. | |
constexpr vec< 2, T > | operator- () const noexcept |
Unary minus operator. | |
template<Primitive U> | |
constexpr vec< 2, T > & | operator+= (U const value) noexcept |
template<Primitive U> | |
constexpr vec< 2, T > & | operator-= (U const value) noexcept |
template<Primitive U> | |
constexpr vec< 2, T > & | operator*= (U const value) noexcept |
template<Primitive U> | |
constexpr vec< 2, T > & | operator/= (U const value) noexcept |
template<Primitive U> | |
constexpr vec< 2, T > & | operator%= (U const value) noexcept |
template<AnyVec U> requires (size == U::size) | |
constexpr vec< 2, T > & | operator+= (U const &other) noexcept |
template<AnyVec U> requires (size == U::size) | |
constexpr vec< 2, T > & | operator-= (U const &other) noexcept |
template<AnyVec U> requires (size == U::size) | |
constexpr vec< 2, T > & | operator*= (U const &other) noexcept |
template<AnyVec U> requires (size == U::size) | |
constexpr vec< 2, T > & | operator/= (U const &other) noexcept |
template<AnyVec U> requires (size == U::size) | |
constexpr vec< 2, T > & | operator%= (U const &other) noexcept |
constexpr T & | operator[] (size_t i) |
Indexing operator (non-const version). | |
constexpr T const & | operator[] (size_t i) const |
Indexing operator (const version). | |
Static Public Member Functions | |
static constexpr vec< 2, T > | zero () noexcept |
Returns a new zero-initialized vec. | |
Public Attributes | |
union mal_math::vec< 2, T >:: { ... } | |
Union providing various ways to access the data. | |
Static Public Attributes | |
static constexpr size_t | size = 2 |
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. | |
2D vector template class.
T | Primitive type used for the vector's components. |
using mal_math::vec< 2, 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< 2, T > { ... } mal_math::vec< 2, T > |
Union providing various ways to access the data.
std::array<T, 2> mal_math::vec< 2, T >::data |
T mal_math::vec< 2, T >::g |
T mal_math::vec< 2, T >::r |
T mal_math::vec< 2, T >::s |
|
staticconstexpr |
T mal_math::vec< 2, T >::t |
T mal_math::vec< 2, T >::u |
T mal_math::vec< 2, T >::v |
T mal_math::vec< 2, T >::x |
T mal_math::vec< 2, T >::y |