phaser/wip/archived/vec2/LengthSq.js

9 lines
102 B
JavaScript

export default function (a) {
let x = a[0];
let y = a[1];
return (x * x) + (y * y);
}