cd collision_detection
npm install
npm start
npm run test //run tests
npm run coverage //check coverage
npm run watch //live reload
Implement the simulation by following rules
- Two types of figures are included in simulation: circles and rectangles.
- All figures must have Collision Detection implemented.
- Figures change color after collision, after 3 collisions figure has to be removed form screen
- All objects should collide with screen borders
- Estimate the number of figures that your simulation can handle before it drops FPS.