phaser/v3/merge/vec2/Min.js

11 lines
169 B
JavaScript
Raw Normal View History

2017-02-04 04:41:17 +00:00
let vec2 = Float32Array;
export default function (a, b, dst = new vec2(2)) {
dst[0] = Math.min(a[0], b[0]);
dst[1] = Math.min(a[1], b[1]);
return dst;
}