Skip to content

Instantly share code, notes, and snippets.

@hclewk
Created February 23, 2017 18:25
Show Gist options
  • Save hclewk/f931a7df35d26cf678043baec779f8ea to your computer and use it in GitHub Desktop.
Save hclewk/f931a7df35d26cf678043baec779f8ea to your computer and use it in GitHub Desktop.
Event Collision Detection Algorithm
//a.start, a.end, b.start, b.end are all DateTime's
bool hasCollision = a.start <= b.start && a.end > b.start || b.start <= a.start && b.end > a.start;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment