sphere point intersection

This commit is contained in:
Recep Aslantas
2018-06-09 18:21:29 +03:00
parent fc14cedf89
commit 857265b892
4 changed files with 33 additions and 0 deletions

View File

@@ -31,3 +31,9 @@ bool
glmc_sphere_sphere(vec4 s1, vec4 s2) {
return glm_sphere_sphere(s1, s2);
}
CGLM_EXPORT
bool
glmc_sphere_point(vec4 s, vec3 point) {
return glm_sphere_point(s, point);
}