implement glm_aabb_sphere as GraphicsGems Solid Box - Solid Sphere test

This commit is contained in:
Recep Aslantas
2018-05-30 23:00:18 +03:00
parent c8fc460ba1
commit 6b2b4b4f12
5 changed files with 23 additions and 19 deletions

View File

@@ -91,6 +91,6 @@ glmc_aabb_contains(vec3 box[2], vec3 other[2]) {
CGLM_EXPORT
bool
glmc_aabb_sphere(vec3 box[2], vec4 sph) {
return glm_aabb_sphere(box, sph);
glmc_aabb_sphere(vec3 box[2], vec4 s) {
return glm_aabb_sphere(box, s);
}