mat4: helper for row * matrix * column

This commit is contained in:
Recep Aslantas
2019-01-26 18:05:05 +03:00
parent 807d5589b4
commit 32ddf49756
5 changed files with 59 additions and 5 deletions

View File

@@ -151,3 +151,9 @@ void
glmc_mat4_swap_row(mat4 mat, int row1, int row2) {
glm_mat4_swap_row(mat, row1, row2);
}
CGLM_EXPORT
float
glmc_mat4_rmc(vec4 r, mat4 m, vec4 c) {
return glm_mat4_rmc(r, m, c);
}