phaser/wip/vec2/PerpDot.js

6 lines
79 B
JavaScript
Raw Normal View History

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