mirror of
https://github.com/photonstorm/phaser
synced 2024-12-22 11:03:23 +00:00
9 lines
138 B
JavaScript
9 lines
138 B
JavaScript
var Ceil = function (rect)
|
|
{
|
|
rect.x = Math.ceil(rect.x);
|
|
rect.y = Math.ceil(rect.y);
|
|
|
|
return rect;
|
|
};
|
|
|
|
module.exports = Ceil;
|