mirror of
https://github.com/photonstorm/phaser
synced 2025-01-12 05:08:54 +00:00
27 lines
706 B
JavaScript
27 lines
706 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* Rounds a Rectangle's position up to the smallest integer greater than or equal to each current coordinate.
|
|
*
|
|
* @function Phaser.Geom.Rectangle.Ceil
|
|
* @since 3.0.0
|
|
*
|
|
* @generic {Phaser.Geom.Rectangle} O - [rect,$return]
|
|
*
|
|
* @param {Phaser.Geom.Rectangle} rect - The Rectangle to adjust.
|
|
*
|
|
* @return {Phaser.Geom.Rectangle} The adjusted Rectangle.
|
|
*/
|
|
var Ceil = function (rect)
|
|
{
|
|
rect.x = Math.ceil(rect.x);
|
|
rect.y = Math.ceil(rect.y);
|
|
|
|
return rect;
|
|
};
|
|
|
|
module.exports = Ceil;
|