phaser/src/geom/rectangle/Ceil.js
2018-01-09 21:43:56 +00:00

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;