| 0.9.9 API documenation
    | 
Go to the source code of this file.
| Functions | |
| template<typename T , qualifier P> | |
| GLM_FUNC_DECL vec< 3, T, P > | cross (vec< 3, T, P > const &x, vec< 3, T, P > const &y) | 
| Returns the cross product of x and y.  More... | |
| template<length_t L, typename T , qualifier P> | |
| GLM_FUNC_DECL T | distance (vec< L, T, P > const &p0, vec< L, T, P > const &p1) | 
| Returns the distance betwwen p0 and p1, i.e., length(p0 - p1).  More... | |
| template<length_t L, typename T , qualifier P> | |
| GLM_FUNC_DECL T | dot (vec< L, T, P > const &x, vec< L, T, P > const &y) | 
| Returns the dot product of x and y, i.e., result = x * y.  More... | |
| template<length_t L, typename T , qualifier P> | |
| GLM_FUNC_DECL vec< L, T, P > | faceforward (vec< L, T, P > const &N, vec< L, T, P > const &I, vec< L, T, P > const &Nref) | 
| If dot(Nref, I) < 0.0, return N, otherwise, return -N.  More... | |
| template<length_t L, typename T , qualifier P> | |
| GLM_FUNC_DECL T | length (vec< L, T, P > const &x) | 
| Returns the length of x, i.e., sqrt(x * x).  More... | |
| template<length_t L, typename T , qualifier P> | |
| GLM_FUNC_DECL vec< L, T, P > | normalize (vec< L, T, P > const &x) | 
| Returns a vector in the same direction as x but with length of 1.  More... | |
| template<length_t L, typename T , qualifier P> | |
| GLM_FUNC_DECL vec< L, T, P > | reflect (vec< L, T, P > const &I, vec< L, T, P > const &N) | 
| For the incident vector I and surface orientation N, returns the reflection direction : result = I - 2.0 * dot(N, I) * N.  More... | |
| template<length_t L, typename T , qualifier P> | |
| GLM_FUNC_DECL vec< L, T, P > | refract (vec< L, T, P > const &I, vec< L, T, P > const &N, T eta) | 
| For the incident vector I and surface normal N, and the ratio of indices of refraction eta, return the refraction vector.  More... | |
Definition in file func_geometric.hpp.
 1.8.10
 1.8.10