UNPKG

@phaserjs/phaser

Version:
13 lines (12 loc) 483 B
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ export function MergeRectangle(target, source) { const minX = Math.min(target.x, source.x); const maxX = Math.max(target.right, source.right); const minY = Math.min(target.y, source.y); const maxY = Math.max(target.bottom, source.bottom); return target.set(minX, minY, maxX - minX, maxY - minY); }