add missing call functions

This commit is contained in:
Recep Aslantas
2018-05-27 11:44:06 +03:00
parent 1362bef50f
commit 73c073cf32
10 changed files with 256 additions and 0 deletions

View File

@@ -44,6 +44,12 @@ glmc_mat3_mulv(mat3 m, vec3 v, vec3 dest) {
glm_mat3_mulv(m, v, dest);
}
CGLM_EXPORT
void
glmc_mat3_quat(mat3 m, versor dest) {
glm_mat3_quat(m, dest);
}
CGLM_EXPORT
void
glmc_mat3_scale(mat3 m, float s) {