mirror of
https://github.com/photonstorm/phaser
synced 2024-12-22 11:03:23 +00:00
10 lines
138 B
JavaScript
10 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;
|