Start implementing wider grenade movement

This commit is contained in:
2025-08-03 23:23:55 +01:00
parent ea2e67c9ab
commit 2a93b7f733
6 changed files with 200 additions and 146 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ intersectSegSurface sp ep p n ss = do
return xp
isNHS :: Point3 -> Point3 -> Point3 -> Bool
isNHS p n x = 0 < dot n (x - p)
isNHS p n x = 0 > dot (p - x) n
intersectSegSegErrorTest :: Point2 -> Point2 -> Point2 -> Point2 -> Maybe Point2
{-# INLINE intersectSegSegErrorTest #-}