In collision detection problems, the challenge is to determine when shapes intersect each other.
0
votes
1answer
53 views
Optimizing snap SVG animation with collision detection
I have a snap SVG animation which animates a bunch of circles, and draws a line between them if they are within a certain proximity of each other. However, I realize that there is a lot of optimizing ...
4
votes
0answers
91 views
Ways of speeding up this python implementation of SAT (Separating axis theorem)
A project I was working on required the usage of the Separating Axis Theorem to detect collisions between two convex polygons in real time. So I implemented a basic class (...
2
votes
0answers
110 views
Collision System in Pong-like game - How good is this code? (Blitzmax)
I am writing a game like Pong. Therefor I am using an entity system approach, so I use component based design.
The hardest part until now was to write the collision system. As I just began with the ...