mirror of
https://github.com/photonstorm/phaser
synced 2024-12-25 12:33:38 +00:00
24 lines
635 B
JavaScript
24 lines
635 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2020 Photon Storm Ltd.
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* Apply `Math.ceil()` to each coordinate of the given Point.
|
|
*
|
|
* @function Phaser.Geom.Point.Floor
|
|
* @since 3.0.0
|
|
*
|
|
* @generic {Phaser.Geom.Point} O - [point,$return]
|
|
*
|
|
* @param {Phaser.Geom.Point} point - The Point to floor.
|
|
*
|
|
* @return {Phaser.Geom.Point} The Point with `Math.floor()` applied to its coordinates.
|
|
*/
|
|
var Floor = function (point)
|
|
{
|
|
return point.setTo(Math.floor(point.x), Math.floor(point.y));
|
|
};
|
|
|
|
module.exports = Floor;
|