Merge pull request #301 from EasyIP2023/feature/glm_mat2_make

mat2: add new function glm_mat2_make
This commit is contained in:
Recep Aslantas
2023-05-15 11:18:27 +03:00
committed by GitHub
7 changed files with 70 additions and 0 deletions

View File

@@ -97,3 +97,9 @@ float
glmc_mat2_rmc(vec2 r, mat2 m, vec2 c) {
return glm_mat2_rmc(r, m, c);
}
CGLM_EXPORT
void
glmc_mat2_make(float * __restrict src, mat2 dest) {
glm_mat2_make(src, dest);
}