phaser/wip/vec2/DistanceSq.js
2018-01-09 22:12:16 +00:00

8 lines
124 B
JavaScript

export default function (a, b) {
const dx = a[0] - b[0];
const dy = a[1] - b[1];
return dx * dx + dy * dy;
}