bounding-box-overlap-test
Version:
test if two n-dimensional bounding boxes overlap
13 lines (11 loc) • 311 B
JavaScript
var overlap = require('../')
var test = require('tape')
test('3d', function (t) {
var a = [ [3,8], [-15,-11], [100,110] ]
var b = [ [1,5], [-12,-5], [80,140] ]
var c = [ [-4,6], [-10,0], [70,90] ]
t.equal(overlap(a, b), true)
t.equal(overlap(a, c), false)
t.equal(overlap(b, c), true)
t.end()
})