FlukyEngine
Classes | Namespaces | Functions
matrix.hpp File Reference

Core features More...

#include "detail/qualifier.hpp"
#include "detail/setup.hpp"
#include "vec2.hpp"
#include "vec3.hpp"
#include "vec4.hpp"
#include "mat2x2.hpp"
#include "mat2x3.hpp"
#include "mat2x4.hpp"
#include "mat3x2.hpp"
#include "mat3x3.hpp"
#include "mat3x4.hpp"
#include "mat4x2.hpp"
#include "mat4x3.hpp"
#include "mat4x4.hpp"
#include "detail/func_matrix.inl"
Include dependency graph for matrix.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  glm::detail::outerProduct_trait< C, R, T, Q >
 
struct  glm::detail::outerProduct_trait< 2, 2, T, Q >
 
struct  glm::detail::outerProduct_trait< 2, 3, T, Q >
 
struct  glm::detail::outerProduct_trait< 2, 4, T, Q >
 
struct  glm::detail::outerProduct_trait< 3, 2, T, Q >
 
struct  glm::detail::outerProduct_trait< 3, 3, T, Q >
 
struct  glm::detail::outerProduct_trait< 3, 4, T, Q >
 
struct  glm::detail::outerProduct_trait< 4, 2, T, Q >
 
struct  glm::detail::outerProduct_trait< 4, 3, T, Q >
 
struct  glm::detail::outerProduct_trait< 4, 4, T, Q >
 

Namespaces

 glm
 Core features
 

Functions

template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > glm::matrixCompMult (mat< C, R, T, Q > const &x, mat< C, R, T, Q > const &y)
 Multiply matrix x by matrix y component-wise, i.e., result[i][j] is the scalar product of x[i][j] and y[i][j]. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL detail::outerProduct_trait< C, R, T, Q >::type glm::outerProduct (vec< C, T, Q > const &c, vec< R, T, Q > const &r)
 Treats the first parameter c as a column vector and the second parameter r as a row vector and does a linear algebraic matrix multiply c * r. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q >::transpose_type glm::transpose (mat< C, R, T, Q > const &x)
 Returns the transposed matrix of x. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL T glm::determinant (mat< C, R, T, Q > const &m)
 Return the determinant of a squared matrix. More...
 
template<length_t C, length_t R, typename T , qualifier Q>
GLM_FUNC_DECL mat< C, R, T, Q > glm::inverse (mat< C, R, T, Q > const &m)
 Return the inverse of a squared matrix. More...
 

Detailed Description

Core features

See also
GLSL 4.20.8 specification, section 8.6 Matrix Functions