Add call and struct interfaces

This commit is contained in:
Sundaram Ramaswamy
2021-05-07 00:35:20 +05:30
parent f19ff5d064
commit 8ce45b4303
2 changed files with 11 additions and 1 deletions

View File

@@ -170,6 +170,12 @@ glmc_quat_lerpc(versor from, versor to, float t, versor dest) {
glm_quat_lerpc(from, to, t, dest);
}
CGLM_EXPORT
void
glmc_quat_nlerp(versor from, versor to, float t, versor dest) {
glm_quat_nlerp(from, to, t, dest);
}
CGLM_EXPORT
void
glmc_quat_slerp(versor from, versor to, float t, versor dest) {