mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 22:52:14 +00:00
8 lines
124 B
JavaScript
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;
|
|
|
|
}
|