mirror of
https://github.com/recp/cglm.git
synced 2025-10-04 01:00:46 +00:00
Forgot to add the dynamic implementation file itself
This commit is contained in:
18
src/vec2.c
18
src/vec2.c
@@ -211,3 +211,21 @@ void
|
||||
glmc_vec2_lerp(vec2 from, vec2 to, float t, vec2 dest) {
|
||||
glm_vec2_lerp(from, to, t, dest);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_vec2_complex_mul(vec2 a, vec2 b, vec2 dest) {
|
||||
glm_vec2_complex_mul(a, b, dest);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_vec2_complex_div(vec2 a, vec2 b, vec2 dest) {
|
||||
glm_vec2_complex_div(a, b, dest);
|
||||
}
|
||||
|
||||
CGLM_EXPORT
|
||||
void
|
||||
glmc_vec2_complex_conjugate(vec2 a, vec2 dest) {
|
||||
glm_vec2_complex_conjugate(a, dest);
|
||||
}
|
||||
|
Reference in New Issue
Block a user