mirror of
https://github.com/photonstorm/phaser
synced 2025-01-12 05:08:54 +00:00
19 lines
332 B
JavaScript
19 lines
332 B
JavaScript
/**
|
|
* [description]
|
|
*
|
|
* @function Phaser.Geom.Rectangle.Ceil
|
|
* @since 3.0.0
|
|
*
|
|
* @param {Phaser.Geom.Rectangle} rect - [description]
|
|
*
|
|
* @return {Phaser.Geom.Rectangle} [description]
|
|
*/
|
|
var Ceil = function (rect)
|
|
{
|
|
rect.x = Math.ceil(rect.x);
|
|
rect.y = Math.ceil(rect.y);
|
|
|
|
return rect;
|
|
};
|
|
|
|
module.exports = Ceil;
|