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 星期五, 15 九月 2023 21:25:14 UTC - 89b7d17faa77e847b7de814f7dcea89eeca38653
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