mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 13:43:26 +00:00
9 lines
102 B
JavaScript
9 lines
102 B
JavaScript
|
|
export default function (a) {
|
|
|
|
let x = a[0];
|
|
let y = a[1];
|
|
|
|
return (x * x) + (y * y);
|
|
|
|
}
|