intersect.js 101 Bytes
Newer Older
Athanasios's avatar
Athanasios committed
1
2
3
4
5
6
7
const Intersect = {
  INSIDE: 0,
  OUTSIDE: 1,
  INTERSECTING: 2
}

module.exports = Intersect;