feat(physics): add ray intersection tests (AABB, sphere, box)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 10:46:29 +09:00
parent d3eead53cf
commit 3f12c4661c
2 changed files with 205 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
pub mod bvh;
pub mod ray;
pub mod collider;
pub mod contact;
pub mod narrow;