2
0
Fork 0
mirror of https://github.com/photonstorm/phaser synced 2025-01-02 16:28:48 +00:00
phaser/v3/merge/vec2/Dot.js

7 lines
80 B
JavaScript
Raw Normal View History

2017-02-04 04:41:17 +00:00
export default function (a, b) {
return (a[0] * b[0]) + (a[1] * b[1]);
}