var Between = function (x1, y1, x2, y2){ return Math.atan2(y2 - y1, x2 - x1); } ; module.exports = Between;