I have gotten a basic phisics simulator to work but now I need a function that will return true or false weather or not a circle and rectangle have collided. I already know how to detect circle-circle and rect-rect collisions.
for example
Dim Ret as Boonean
Ret = DetectCollision(Circle, Rect)
The function does not have to be absoluetly acurate it just has to be ... believable.
Has any one seen a function out there that would do this. BTW the collsition detection is in 2d so i don't need 3D although it might help.
Or no that I think of it has anyone seen a 2d triangle collision detector? THat would probubly help just as much.