mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 13:43:26 +00:00
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
export default function (a, b) {
|
|
|
|
const dx = a[0] - b[0];
|
|
const dy = a[1] - b[1];
|
|
|
|
return Math.sqrt(dx * dx + dy * dy);
|
|
|
|
}
|