UNPKG

139 BJavaScriptView Raw
1module.exports.distanceSquared = function distanceSquared(x1, y1, x2, y2) {
2 return ((x1 - x2) * (x1 - x2)) + ((y1 - y2) * (y1 - y2));
3};