global functions
glm::determinant(...)
float glm::determinant(const detail::fmat4x4SIMD &m)
Documentation from code comments
Return the determinant of a mat4 matrix. (From GLM_GTX_simd_mat4 extension).
glm::inverse(...)
detail::fmat4x4SIMD glm::inverse(const detail::fmat4x4SIMD &m)
Documentation from code comments
Return the inverse of a mat4 matrix. (From GLM_GTX_simd_mat4 extension).
glm::mat4_cast(...)
glm::mat4 glm::mat4_cast(const detail::fmat4x4SIMD &x)
Documentation from code comments
Convert a simdMat4 to a mat4. (From GLM_GTX_simd_mat4 extension)
glm::matrixCompMult(...)
detail::fmat4x4SIMD glm::matrixCompMult(const detail::fmat4x4SIMD &x, const detail::fmat4x4SIMD &y)
Documentation from code comments
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]. (From GLM_GTX_simd_mat4 extension).
glm::outerProduct(...)
detail::fmat4x4SIMD glm::outerProduct(const detail::fvec4SIMD &c, const detail::fvec4SIMD &r)
Documentation from code comments
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. (From GLM_GTX_simd_mat4 extension).
glm::transpose(...)
detail::fmat4x4SIMD glm::transpose(const detail::fmat4x4SIMD &x)
Documentation from code comments
Returns the transposed matrix of x (From GLM_GTX_simd_mat4 extension).
Last updated 화요일, 19 11월 2024 17:25:57 UTC - 2537ee49f6d46d5fe98e408849448314fd1f180e
If you have any doubt about the usage of this module you can ask in the forum.
If you want to contribute better documentation or start documenting this section you can do so here
If you find anything wrong with this docs you can report any error by opening an issue