From cca3880bed613854e2187293d52f9baa7536439c Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 30 Apr 2024 13:40:07 +0900 Subject: [PATCH] Minor fixes to doc/comments in header --- src/sc_sacd.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sc_sacd.h b/src/sc_sacd.h index 995894f..3ad66b9 100644 --- a/src/sc_sacd.h +++ b/src/sc_sacd.h @@ -80,12 +80,15 @@ SC_SACD_EXPORT int SC_SACD_Generic_Box_Collision(const SC_SACD_Generic_Box *a, SC_SACD_EXPORT int SC_SACD_AABB_Generic_Box_Collision( const SC_SACD_AABB_Box *a, const SC_SACD_Generic_Box *b); +/// Returns non-zero if there is collision. SC_SACD_EXPORT int SC_SACD_Sphere_Collision(const SC_SACD_Sphere *a, const SC_SACD_Sphere *b); +/// Returns non-zero if there is collision. SC_SACD_EXPORT int SC_SACD_Sphere_AABB_Box_Collision( const SC_SACD_Sphere *sphere, const SC_SACD_AABB_Box *box); +/// Returns non-zero if there is collision. SC_SACD_EXPORT int SC_SACD_Sphere_Box_Collision(const SC_SACD_Sphere *sphere, const SC_SACD_Generic_Box *box);