| 
| template<typename genType >  | 
| GLM_FUNC_DECL genType  | exp (genType const &x) | 
|   | 
| template<typename genType >  | 
| GLM_FUNC_DECL genType  | exp2 (genType const &x) | 
|   | 
| template<typename genType >  | 
| GLM_FUNC_DECL genType  | inversesqrt (genType const &x) | 
|   | 
| template<typename genType >  | 
| GLM_FUNC_DECL genType  | log (genType const &x) | 
|   | 
| template<typename genType >  | 
| GLM_FUNC_DECL genType  | log2 (genType const &x) | 
|   | 
| template<typename genType >  | 
| GLM_FUNC_DECL genType  | pow (genType const &base, genType const &exponent) | 
|   | 
| template<typename genType >  | 
| GLM_FUNC_DECL genType  | sqrt (genType const &x) | 
|   | 
These all operate component-wise. 
The description is per component. 
      
        
          | GLM_FUNC_DECL genType glm::exp  | 
          ( | 
          genType const &  | 
          x | ) | 
           | 
        
      
 
 
      
        
          | GLM_FUNC_DECL genType glm::exp2  | 
          ( | 
          genType const &  | 
          x | ) | 
           | 
        
      
 
 
      
        
          | GLM_FUNC_DECL genType glm::inversesqrt  | 
          ( | 
          genType const &  | 
          x | ) | 
           | 
        
      
 
 
      
        
          | GLM_FUNC_DECL genType glm::log  | 
          ( | 
          genType const &  | 
          x | ) | 
           | 
        
      
 
Returns the natural logarithm of x, i.e., returns the value y which satisfies the equation x = e^y. 
Results are undefined if x <= 0.
- Parameters
 - 
  
    | x | log function is defined for input values of x defined in the range (0, inf+) in the limit of the type precision.  | 
  
   
- Template Parameters
 - 
  
    | genType | Floating-point scalar or vector types. | 
  
   
- See Also
 - GLSL log man page 
 
- 
GLSL 4.20.8 specification, section 8.2 Exponential Functions 
 
 
 
      
        
          | GLM_FUNC_DECL genType glm::log2  | 
          ( | 
          genType const &  | 
          x | ) | 
           | 
        
      
 
 
      
        
          | GLM_FUNC_DECL genType glm::pow  | 
          ( | 
          genType const &  | 
          base,  | 
        
        
           | 
           | 
          genType const &  | 
          exponent  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Returns 'base' raised to the power 'exponent'. 
- Parameters
 - 
  
    | base | Floating point value. pow function is defined for input values of x defined in the range (inf-, inf+) in the limit of the type precision.  | 
    | exponent | Floating point value representing the 'exponent'.  | 
  
   
- Template Parameters
 - 
  
    | genType | Floating-point scalar or vector types. | 
  
   
- See Also
 - GLSL pow man page 
 
- 
GLSL 4.20.8 specification, section 8.2 Exponential Functions 
 
 
 
      
        
          | GLM_FUNC_DECL genType glm::sqrt  | 
          ( | 
          genType const &  | 
          x | ) | 
           |