mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 13:43:26 +00:00
9 lines
165 B
JavaScript
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
|
|
);
|
|
|
|
}
|