arcade-physics
Version:
Use Arcade Physics without Phaser.
20 lines • 690 B
TypeScript
export default CeilAll;
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* Rounds a Rectangle's position and size up to the smallest integer greater than or equal to each respective value.
*
* @function Phaser.Geom.Rectangle.CeilAll
* @since 3.0.0
*
* @generic {Phaser.Geom.Rectangle} O - [rect,$return]
*
* @param {Phaser.Geom.Rectangle} rect - The Rectangle to modify.
*
* @return {Phaser.Geom.Rectangle} The modified Rectangle.
*/
declare function CeilAll(rect: Phaser.Geom.Rectangle): Phaser.Geom.Rectangle;
//# sourceMappingURL=CeilAll.d.ts.map