UNPKG

splat-ecs

Version:
4 lines (3 loc) 139 B
module.exports.distanceSquared = function distanceSquared(x1, y1, x2, y2) { return ((x1 - x2) * (x1 - x2)) + ((y1 - y2) * (y1 - y2)); };