2017-09-29 10:40:49 +00:00
|
|
|
var Rectangle = require('./Rectangle');
|
|
|
|
|
|
|
|
// points is an array of Point-like objects,
|
|
|
|
// either 2 dimensional arrays, or objects with public x/y properties:
|
|
|
|
// var points = [
|
|
|
|
// [100, 200],
|
|
|
|
// [200, 400],
|
|
|
|
// { x: 30, y: 60 }
|
|
|
|
// ]
|
|
|
|
|
2017-10-13 13:11:54 +00:00
|
|
|
/**
|
|
|
|
* [description]
|
|
|
|
*
|
|
|
|
* @function Phaser.Geom.Rectangle.FromPoints
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
|
|
|
* @param {[type]} points - [description]
|
|
|
|
* @param {Phaser.Geom.Rectangle} out - [description]
|
|
|
|
*
|
|
|
|
* @return {Phaser.Geom.Rectangle} [description]
|
|
|
|
*/
|
2017-09-29 10:40:49 +00:00
|
|
|
var FromPoints = function (points, out)
|
|
|
|
{
|
|
|
|
if (out === undefined) { out = new Rectangle(); }
|
|
|
|
|
|
|
|
if (points.length === 0)
|
|
|
|
{
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2018-01-18 14:59:32 +00:00
|
|
|
var minX = Number.MAX_VALUE;
|
|
|
|
var minY = Number.MAX_VALUE;
|
2017-09-29 10:40:49 +00:00
|
|
|
|
|
|
|
var maxX = Number.MIN_SAFE_INTEGER;
|
|
|
|
var maxY = Number.MIN_SAFE_INTEGER;
|
|
|
|
|
|
|
|
var p;
|
|
|
|
var px;
|
|
|
|
var py;
|
|
|
|
|
|
|
|
for (var i = 0; i < points.length; i++)
|
|
|
|
{
|
|
|
|
p = points[i];
|
|
|
|
|
|
|
|
if (Array.isArray(p))
|
|
|
|
{
|
|
|
|
px = p[0];
|
|
|
|
py = p[1];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
px = p.x;
|
|
|
|
py = p.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
minX = Math.min(minX, px);
|
|
|
|
minY = Math.min(minY, py);
|
|
|
|
|
|
|
|
maxX = Math.max(maxX, px);
|
|
|
|
maxY = Math.max(maxY, py);
|
|
|
|
}
|
|
|
|
|
|
|
|
out.x = minX;
|
|
|
|
out.y = minY;
|
|
|
|
out.width = maxX - minX;
|
|
|
|
out.height = maxY - minY;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = FromPoints;
|