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

6 lines
80 B
JavaScript

export default function (a, b) {
return (a[0] * b[0]) + (a[1] * b[1]);
}