2
0
Fork 0
mirror of https://github.com/photonstorm/phaser synced 2024-12-28 05:53:49 +00:00
phaser/wip/vec2/Equal.js
2018-01-09 22:12:16 +00:00

9 lines
165 B
JavaScript

export default function (a, b, precision = 1e-6) {
return (
Math.abs(a[0] - b[0]) <= precision &&
Math.abs(a[1] - b[1]) <= precision
);
}