Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 595 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 595 Bytes

Development

cd collision_detection
npm install
npm start

Testing

npm run test //run tests
npm run coverage //check coverage
npm run watch //live reload

Task

Implement the simulation by following rules

  1. Two types of figures are included in simulation: circles and rectangles.
  2. All figures must have Collision Detection implemented.
  3. Figures change color after collision, after 3 collisions figure has to be removed form screen
  4. All objects should collide with screen borders
  5. Estimate the number of figures that your simulation can handle before it drops FPS.