mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 21:53:59 +00:00
27 lines
375 B
JavaScript
27 lines
375 B
JavaScript
|
|
export function equal (a, b, precision = 1e-6) {
|
|
|
|
return [
|
|
Math.abs(a[0] - b) <= precision,
|
|
Math.abs(a[1] - b) <= precision
|
|
];
|
|
|
|
}
|
|
|
|
export function less (a, b) {
|
|
|
|
return [ a[0] < b, a[1] < b ];
|
|
|
|
}
|
|
|
|
export function greater (a, b) {
|
|
|
|
return [ a[0] > b, a[1] > b ];
|
|
|
|
}
|
|
|
|
export function greaterEq (a, b) {
|
|
|
|
return [ a[0] >= b, a[1] >= b ];
|
|
|
|
}
|