FlukyEngine
Classes | Namespaces | Functions
func_exponential.inl File Reference

Core features More...

#include "../vector_relational.hpp"
#include "_vectorize.hpp"
#include <limits>
#include <cmath>
#include <cassert>
Include dependency graph for func_exponential.inl:
This graph shows which files directly or indirectly include this file:

Classes

struct  glm::detail::compute_log2< L, T, Q, isFloat, Aligned >
 
struct  glm::detail::compute_sqrt< L, T, Q, Aligned >
 
struct  glm::detail::compute_inversesqrt< L, T, Q, Aligned >
 
struct  glm::detail::compute_inversesqrt< L, float, lowp, Aligned >
 

Namespaces

 glm
 Core features
 

Functions

template<typename genType >
genType glm::detail::log2 (genType Value)
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< L, T, Q > glm::pow (vec< L, T, Q > const &base, vec< L, T, Q > const &exponent)
 Returns 'base' raised to the power 'exponent'. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< L, T, Q > glm::exp (vec< L, T, Q > const &x)
 Returns the natural exponentiation of x, i.e., e^x. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< L, T, Q > glm::log (vec< L, T, Q > const &x)
 Returns the natural logarithm of v, i.e., returns the value y which satisfies the equation x = e^y. More...
 
template<typename genType >
GLM_FUNC_QUALIFIER genType glm::exp2 (genType x)
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< L, T, Q > glm::exp2 (vec< L, T, Q > const &x)
 Returns 2 raised to the v power. More...
 
template<typename genType >
GLM_FUNC_QUALIFIER genType glm::log2 (genType x)
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< L, T, Q > glm::log2 (vec< L, T, Q > const &x)
 Returns the base 2 log of x, i.e., returns the value y, which satisfies the equation x = 2 ^ y. More...
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< L, T, Q > glm::sqrt (vec< L, T, Q > const &x)
 Returns the positive square root of v. More...
 
template<typename genType >
GLM_FUNC_QUALIFIER genType glm::inversesqrt (genType x)
 
template<length_t L, typename T , qualifier Q>
GLM_FUNC_QUALIFIER vec< L, T, Q > glm::inversesqrt (vec< L, T, Q > const &x)
 Returns the reciprocal of the positive square root of v. More...
 

Detailed Description

Core features