mal-math
C++20 mathematics library.
All Classes Namespaces Files Functions Variables Typedefs Concepts
mal_math::random::_detail Namespace Reference

Functions

template<AnyVec T>
vec< T::size, std::remove_const_t< typename T::type > > UnitRandom (std::mt19937 &gen) noexcept
 Generates a unit vector with random direction.
 
template<AnyVec T, AnyVec U>
requires (T::size == U::size)
vec< T::size, std::remove_const_t< typename T::type > > RandomVector (std::mt19937 &gen, U const &from, U const &to) noexcept
 Generates a random vector between two other vectors.
 
template<AnyVec T, Primitive U>
vec< T::size, std::remove_const_t< typename T::type > > RandomVector (std::mt19937 &gen, U const &from, U const to) noexcept
 Generates a random vector where each value should be between from and to.
 

Function Documentation

◆ RandomVector() [1/2]

template<AnyVec T, AnyVec U>
requires (T::size == U::size)
vec< T::size, std::remove_const_t< typename T::type > > mal_math::random::_detail::RandomVector ( std::mt19937 & gen,
U const & from,
U const & to )
inlinenoexcept

Generates a random vector between two other vectors.

Template Parameters
TResulting vector type.
UInput vector types.
Parameters
genReference to a random number generator.
fromStart vector.
toEnd vector.
Returns
A random vector between from and to.

Definition at line 40 of file random.hpp.

Here is the caller graph for this function:

◆ RandomVector() [2/2]

template<AnyVec T, Primitive U>
vec< T::size, std::remove_const_t< typename T::type > > mal_math::random::_detail::RandomVector ( std::mt19937 & gen,
U const & from,
U const to )
inlinenoexcept

Generates a random vector where each value should be between from and to.

Template Parameters
TResulting vector type.
UInput vector types.
Parameters
genReference to a random number generator.
fromStart vector.
toEnd vector.
Returns
A random vector between from and primitive to.

Definition at line 59 of file random.hpp.

◆ UnitRandom()

template<AnyVec T>
vec< T::size, std::remove_const_t< typename T::type > > mal_math::random::_detail::UnitRandom ( std::mt19937 & gen)
inlinenoexcept

Generates a unit vector with random direction.

Template Parameters
TAny vector type.
Parameters
genReference to a random number generator.
Returns
A normalized random vector.

Definition at line 22 of file random.hpp.

Here is the call graph for this function:
Here is the caller graph for this function: