2013-08-28 14:58:37 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2014-02-05 05:54:25 +00:00
|
|
|
* @copyright 2014 Photon Storm Ltd.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
2013-08-28 14:58:37 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-09-16 16:35:08 +00:00
|
|
|
* A Point object represents a location in a two-dimensional coordinate system, where x represents the horizontal axis and y represents the vertical axis.
|
2014-04-27 10:09:57 +00:00
|
|
|
* The following code creates a point at (0,0):
|
|
|
|
* `var myPoint = new Phaser.Point();`
|
|
|
|
* You can also use them as 2D Vectors and you'll find different vector related methods in this class.
|
2014-09-16 16:35:08 +00:00
|
|
|
*
|
|
|
|
* @class Phaser.Point
|
2013-08-28 14:58:37 +00:00
|
|
|
* @constructor
|
2014-04-27 10:09:57 +00:00
|
|
|
* @param {number} [x=0] - The horizontal position of this Point.
|
|
|
|
* @param {number} [y=0] - The vertical position of this Point.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
Phaser.Point = function (x, y) {
|
|
|
|
|
2013-09-10 19:40:34 +00:00
|
|
|
x = x || 0;
|
|
|
|
y = y || 0;
|
2013-08-28 14:58:37 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2014-04-22 01:02:43 +00:00
|
|
|
* @property {number} x - The x value of the point.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
this.x = x;
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2013-10-01 12:54:29 +00:00
|
|
|
/**
|
2014-04-22 01:02:43 +00:00
|
|
|
* @property {number} y - The y value of the point.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
this.y = y;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
Phaser.Point.prototype = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies the x and y properties from any given object to this Point.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#copyFrom
|
2013-08-28 14:58:37 +00:00
|
|
|
* @param {any} source - The object to copy from.
|
2014-04-22 01:02:43 +00:00
|
|
|
* @return {Phaser.Point} This Point object.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
copyFrom: function (source) {
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
return this.setTo(source.x, source.y);
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Inverts the x and y values of this Point
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#invert
|
2014-04-22 01:02:43 +00:00
|
|
|
* @return {Phaser.Point} This Point object.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
invert: function () {
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
return this.setTo(this.y, this.x);
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2014-04-22 01:02:43 +00:00
|
|
|
* Sets the `x` and `y` values of this Point object to the given values.
|
|
|
|
* If you omit the `y` value then the `x` value will be applied to both, for example:
|
|
|
|
* `Point.setTo(2)` is the same as `Point.setTo(2, 2)`
|
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#setTo
|
2014-04-22 01:02:43 +00:00
|
|
|
* @param {number} x - The horizontal value of this point.
|
|
|
|
* @param {number} [y] - The vertical value of this point. If not given the x value will be used in its place.
|
|
|
|
* @return {Phaser.Point} This Point object. Useful for chaining method calls.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
setTo: function (x, y) {
|
2013-10-09 03:31:08 +00:00
|
|
|
|
2014-02-06 12:29:07 +00:00
|
|
|
this.x = x || 0;
|
|
|
|
this.y = y || ( (y !== 0) ? this.x : 0 );
|
|
|
|
|
|
|
|
return this;
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2014-02-06 12:29:07 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2014-04-22 01:02:43 +00:00
|
|
|
* Sets the `x` and `y` values of this Point object to the given values.
|
|
|
|
* If you omit the `y` value then the `x` value will be applied to both, for example:
|
|
|
|
* `Point.setTo(2)` is the same as `Point.setTo(2, 2)`
|
|
|
|
*
|
2014-02-06 12:29:07 +00:00
|
|
|
* @method Phaser.Point#set
|
2014-04-22 01:02:43 +00:00
|
|
|
* @param {number} x - The horizontal value of this point.
|
|
|
|
* @param {number} [y] - The vertical value of this point. If not given the x value will be used in its place.
|
|
|
|
* @return {Phaser.Point} This Point object. Useful for chaining method calls.
|
2014-02-06 12:29:07 +00:00
|
|
|
*/
|
|
|
|
set: function (x, y) {
|
|
|
|
|
|
|
|
this.x = x || 0;
|
|
|
|
this.y = y || ( (y !== 0) ? this.x : 0 );
|
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
return this;
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
},
|
|
|
|
|
2013-10-02 11:11:22 +00:00
|
|
|
/**
|
|
|
|
* Adds the given x and y values to this Point.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#add
|
|
|
|
* @param {number} x - The value to add to Point.x.
|
|
|
|
* @param {number} y - The value to add to Point.y.
|
|
|
|
* @return {Phaser.Point} This Point object. Useful for chaining method calls.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
add: function (x, y) {
|
|
|
|
|
|
|
|
this.x += x;
|
|
|
|
this.y += y;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 11:11:22 +00:00
|
|
|
/**
|
|
|
|
* Subtracts the given x and y values from this Point.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#subtract
|
|
|
|
* @param {number} x - The value to subtract from Point.x.
|
|
|
|
* @param {number} y - The value to subtract from Point.y.
|
|
|
|
* @return {Phaser.Point} This Point object. Useful for chaining method calls.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
subtract: function (x, y) {
|
|
|
|
|
|
|
|
this.x -= x;
|
|
|
|
this.y -= y;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 11:11:22 +00:00
|
|
|
/**
|
2014-04-27 10:09:57 +00:00
|
|
|
* Multiplies Point.x and Point.y by the given x and y values. Sometimes known as `Scale`.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#multiply
|
|
|
|
* @param {number} x - The value to multiply Point.x by.
|
|
|
|
* @param {number} y - The value to multiply Point.x by.
|
|
|
|
* @return {Phaser.Point} This Point object. Useful for chaining method calls.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
multiply: function (x, y) {
|
|
|
|
|
|
|
|
this.x *= x;
|
|
|
|
this.y *= y;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-02 11:11:22 +00:00
|
|
|
/**
|
|
|
|
* Divides Point.x and Point.y by the given x and y values.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#divide
|
|
|
|
* @param {number} x - The value to divide Point.x by.
|
|
|
|
* @param {number} y - The value to divide Point.x by.
|
|
|
|
* @return {Phaser.Point} This Point object. Useful for chaining method calls.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
divide: function (x, y) {
|
|
|
|
|
|
|
|
this.x /= x;
|
|
|
|
this.y /= y;
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Clamps the x value of this Point to be between the given min and max.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#clampX
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} min - The minimum value to clamp this Point to.
|
|
|
|
* @param {number} max - The maximum value to clamp this Point to.
|
2013-08-28 14:58:37 +00:00
|
|
|
* @return {Phaser.Point} This Point object.
|
|
|
|
*/
|
|
|
|
clampX: function (min, max) {
|
|
|
|
|
|
|
|
this.x = Phaser.Math.clamp(this.x, min, max);
|
|
|
|
return this;
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clamps the y value of this Point to be between the given min and max
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#clampY
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} min - The minimum value to clamp this Point to.
|
|
|
|
* @param {number} max - The maximum value to clamp this Point to.
|
2013-08-28 14:58:37 +00:00
|
|
|
* @return {Phaser.Point} This Point object.
|
|
|
|
*/
|
|
|
|
clampY: function (min, max) {
|
|
|
|
|
|
|
|
this.y = Phaser.Math.clamp(this.y, min, max);
|
|
|
|
return this;
|
2014-03-23 07:59:28 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2013-10-01 12:54:29 +00:00
|
|
|
* Clamps this Point object values to be between the given min and max.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#clamp
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} min - The minimum value to clamp this Point to.
|
|
|
|
* @param {number} max - The maximum value to clamp this Point to.
|
2013-08-28 14:58:37 +00:00
|
|
|
* @return {Phaser.Point} This Point object.
|
|
|
|
*/
|
|
|
|
clamp: function (min, max) {
|
|
|
|
|
|
|
|
this.x = Phaser.Math.clamp(this.x, min, max);
|
|
|
|
this.y = Phaser.Math.clamp(this.y, min, max);
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a copy of the given Point.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#clone
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {Phaser.Point} [output] Optional Point object. If given the values will be set into this object, otherwise a brand new Point object will be created and returned.
|
2013-08-28 14:58:37 +00:00
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
clone: function (output) {
|
|
|
|
|
2014-08-21 21:44:40 +00:00
|
|
|
if (typeof output === "undefined" || output === null)
|
2014-02-06 12:29:07 +00:00
|
|
|
{
|
|
|
|
output = new Phaser.Point(this.x, this.y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
output.setTo(this.x, this.y);
|
|
|
|
}
|
2013-08-28 14:58:37 +00:00
|
|
|
|
2014-02-06 12:29:07 +00:00
|
|
|
return output;
|
2013-08-28 14:58:37 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies the x and y properties from this Point to any given object.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#copyTo
|
2013-08-28 14:58:37 +00:00
|
|
|
* @param {any} dest - The object to copy to.
|
2014-11-30 11:10:52 +00:00
|
|
|
* @return {object} The dest object.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2014-04-22 01:02:43 +00:00
|
|
|
copyTo: function (dest) {
|
2013-08-28 14:58:37 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
dest.x = this.x;
|
|
|
|
dest.y = this.y;
|
2013-08-28 14:58:37 +00:00
|
|
|
|
|
|
|
return dest;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the distance of this Point object to the given object (can be a Circle, Point or anything with x/y properties)
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2014-04-27 10:09:57 +00:00
|
|
|
* @method Phaser.Point#distance
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {object} dest - The target object. Must have visible x and y properties that represent the center of the object.
|
2013-10-01 15:39:39 +00:00
|
|
|
* @param {boolean} [round] - Round the distance to the nearest integer (default false).
|
2013-10-01 12:54:29 +00:00
|
|
|
* @return {number} The distance between this Point object and the destination Point object.
|
2013-08-28 14:58:37 +00:00
|
|
|
*/
|
|
|
|
distance: function (dest, round) {
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
return Phaser.Point.distance(this, dest, round);
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines whether the given objects x/y values are equal to this Point object.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#equals
|
2014-04-27 10:09:57 +00:00
|
|
|
* @param {Phaser.Point|any} a - The object to compare with this Point.
|
|
|
|
* @return {boolean} A value of true if the x and y points are equal, otherwise false.
|
2013-08-28 14:58:37 +00:00
|
|
|
*/
|
|
|
|
equals: function (a) {
|
2014-04-26 19:35:31 +00:00
|
|
|
|
|
|
|
return (a.x === this.x && a.y === this.y);
|
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
},
|
|
|
|
|
2014-04-27 10:09:57 +00:00
|
|
|
/**
|
|
|
|
* Returns the angle between this Point object and another object with public x and y properties.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point#angle
|
|
|
|
* @param {Phaser.Point|any} a - The object to get the angle from this Point to.
|
2014-05-07 17:10:13 +00:00
|
|
|
* @param {boolean} [asDegrees=false] - Is the given angle in radians (false) or degrees (true)?
|
2014-04-27 10:09:57 +00:00
|
|
|
* @return {number} The angle between the two objects.
|
|
|
|
*/
|
2014-05-07 17:10:13 +00:00
|
|
|
angle: function (a, asDegrees) {
|
2014-04-27 10:09:57 +00:00
|
|
|
|
2014-05-07 17:10:13 +00:00
|
|
|
if (typeof asDegrees === 'undefined') { asDegrees = false; }
|
2014-05-07 15:35:08 +00:00
|
|
|
|
2014-05-07 17:10:13 +00:00
|
|
|
if (asDegrees)
|
|
|
|
{
|
|
|
|
return Phaser.Math.radToDeg(Math.atan2(a.y - this.y, a.x - this.x));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return Math.atan2(a.y - this.y, a.x - this.x);
|
|
|
|
}
|
2014-04-27 10:09:57 +00:00
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
/**
|
|
|
|
* Rotates this Point around the x/y coordinates given to the desired angle.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#rotate
|
2014-04-27 10:09:57 +00:00
|
|
|
* @param {number} x - The x coordinate of the anchor point.
|
|
|
|
* @param {number} y - The y coordinate of the anchor point.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} angle - The angle in radians (unless asDegrees is true) to rotate the Point to.
|
2013-10-01 15:39:39 +00:00
|
|
|
* @param {boolean} asDegrees - Is the given rotation in radians (false) or degrees (true)?
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {number} [distance] - An optional distance constraint between the Point and the anchor.
|
|
|
|
* @return {Phaser.Point} The modified point object.
|
2013-08-28 14:58:37 +00:00
|
|
|
*/
|
|
|
|
rotate: function (x, y, angle, asDegrees, distance) {
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
return Phaser.Point.rotate(this, x, y, angle, asDegrees, distance);
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
},
|
|
|
|
|
2013-10-31 14:11:03 +00:00
|
|
|
/**
|
2014-04-26 19:35:31 +00:00
|
|
|
* Calculates the length of the Point object.
|
|
|
|
*
|
2013-11-25 04:40:04 +00:00
|
|
|
* @method Phaser.Point#getMagnitude
|
2014-04-26 19:35:31 +00:00
|
|
|
* @return {number} The length of the Point.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2014-04-22 01:02:43 +00:00
|
|
|
getMagnitude: function () {
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-10-31 14:11:03 +00:00
|
|
|
return Math.sqrt((this.x * this.x) + (this.y * this.y));
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-10-31 14:11:03 +00:00
|
|
|
},
|
|
|
|
|
2014-04-27 10:09:57 +00:00
|
|
|
/**
|
|
|
|
* Calculates the length squared of the Point object.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point#getMagnitudeSq
|
|
|
|
* @return {number} The length ^ 2 of the Point.
|
|
|
|
*/
|
|
|
|
getMagnitudeSq: function () {
|
|
|
|
|
|
|
|
return (this.x * this.x) + (this.y * this.y);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-10-31 14:11:03 +00:00
|
|
|
/**
|
2014-04-26 19:35:31 +00:00
|
|
|
* Alters the length of the Point without changing the direction.
|
|
|
|
*
|
2014-02-19 03:51:48 +00:00
|
|
|
* @method Phaser.Point#setMagnitude
|
2014-04-26 19:35:31 +00:00
|
|
|
* @param {number} magnitude - The desired magnitude of the resulting Point.
|
|
|
|
* @return {Phaser.Point} This Point object.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2014-04-22 01:02:43 +00:00
|
|
|
setMagnitude: function (magnitude) {
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-10-31 14:11:03 +00:00
|
|
|
return this.normalize().multiply(magnitude, magnitude);
|
2014-04-26 19:35:31 +00:00
|
|
|
|
2013-10-31 14:11:03 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2014-04-26 19:35:31 +00:00
|
|
|
* Alters the Point object so that its length is 1, but it retains the same direction.
|
|
|
|
*
|
2013-11-25 04:40:04 +00:00
|
|
|
* @method Phaser.Point#normalize
|
2014-04-26 19:35:31 +00:00
|
|
|
* @return {Phaser.Point} This Point object.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2014-04-22 01:02:43 +00:00
|
|
|
normalize: function () {
|
2013-10-31 14:11:03 +00:00
|
|
|
|
2014-04-22 01:02:43 +00:00
|
|
|
if (!this.isZero())
|
|
|
|
{
|
2013-10-31 14:11:03 +00:00
|
|
|
var m = this.getMagnitude();
|
|
|
|
this.x /= m;
|
|
|
|
this.y /= m;
|
|
|
|
}
|
|
|
|
|
|
|
|
return this;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2014-04-26 19:35:31 +00:00
|
|
|
* Determine if this point is at 0,0.
|
|
|
|
*
|
2013-11-25 04:40:04 +00:00
|
|
|
* @method Phaser.Point#isZero
|
2014-04-26 19:35:31 +00:00
|
|
|
* @return {boolean} True if this Point is 0,0, otherwise false.
|
2013-11-25 04:40:04 +00:00
|
|
|
*/
|
2014-04-22 01:02:43 +00:00
|
|
|
isZero: function () {
|
|
|
|
|
2013-10-31 14:11:03 +00:00
|
|
|
return (this.x === 0 && this.y === 0);
|
2014-04-22 01:02:43 +00:00
|
|
|
|
2013-10-31 14:11:03 +00:00
|
|
|
},
|
|
|
|
|
2014-04-26 19:35:31 +00:00
|
|
|
/**
|
|
|
|
* The dot product of this and another Point object.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point#dot
|
|
|
|
* @param {Phaser.Point} a - The Point object to get the dot product combined with this Point.
|
|
|
|
* @return {number} The result.
|
|
|
|
*/
|
|
|
|
dot: function (a) {
|
|
|
|
|
|
|
|
return ((this.x * a.x) + (this.y * a.y));
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The cross product of this and another Point object.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point#cross
|
|
|
|
* @param {Phaser.Point} a - The Point object to get the cross product combined with this Point.
|
|
|
|
* @return {number} The result.
|
|
|
|
*/
|
|
|
|
cross: function (a) {
|
|
|
|
|
|
|
|
return ((this.x * a.y) - (this.y * a.x));
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make this Point perpendicular (90 degrees rotation)
|
|
|
|
*
|
|
|
|
* @method Phaser.Point#perp
|
|
|
|
* @return {Phaser.Point} This Point object.
|
|
|
|
*/
|
|
|
|
perp: function () {
|
|
|
|
|
|
|
|
return this.setTo(-this.y, this.x);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Make this Point perpendicular (-90 degrees rotation)
|
|
|
|
*
|
|
|
|
* @method Phaser.Point#rperp
|
|
|
|
* @return {Phaser.Point} This Point object.
|
|
|
|
*/
|
|
|
|
rperp: function () {
|
|
|
|
|
|
|
|
return this.setTo(this.y, -this.x);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-04-27 10:09:57 +00:00
|
|
|
/**
|
|
|
|
* Right-hand normalize (make unit length) this Point.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point#normalRightHand
|
|
|
|
* @return {Phaser.Point} This Point object.
|
|
|
|
*/
|
|
|
|
normalRightHand: function () {
|
|
|
|
|
|
|
|
return this.setTo(this.y * -1, this.x);
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2014-11-04 23:56:43 +00:00
|
|
|
/**
|
|
|
|
* Math.floor() both the x and y properties of this Point.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point#floor
|
|
|
|
* @return {Phaser.Point} This Point object.
|
|
|
|
*/
|
|
|
|
floor: function () {
|
|
|
|
|
|
|
|
return this.setTo(Math.floor(this.x), Math.floor(this.y));
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Math.ceil() both the x and y properties of this Point.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point#ceil
|
|
|
|
* @return {Phaser.Point} This Point object.
|
|
|
|
*/
|
|
|
|
ceil: function () {
|
|
|
|
|
|
|
|
return this.setTo(Math.ceil(this.x), Math.ceil(this.y));
|
|
|
|
|
|
|
|
},
|
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
/**
|
|
|
|
* Returns a string representation of this object.
|
2014-04-26 19:35:31 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point#toString
|
2013-10-01 12:54:29 +00:00
|
|
|
* @return {string} A string representation of the instance.
|
2013-11-25 03:13:04 +00:00
|
|
|
*/
|
2013-08-28 14:58:37 +00:00
|
|
|
toString: function () {
|
2014-04-22 01:02:43 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
return '[{Point (x=' + this.x + ' y=' + this.y + ')}]';
|
2014-04-22 01:02:43 +00:00
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-12-30 16:54:00 +00:00
|
|
|
Phaser.Point.prototype.constructor = Phaser.Point;
|
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
/**
|
|
|
|
* Adds the coordinates of two points together to create a new point.
|
2014-04-27 10:09:57 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point.add
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} b - The second Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
2013-08-28 14:58:37 +00:00
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.add = function (a, b, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
out.x = a.x + b.x;
|
|
|
|
out.y = a.y + b.y;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subtracts the coordinates of two points to create a new point.
|
2014-04-27 10:09:57 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point.subtract
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} b - The second Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
2013-08-28 14:58:37 +00:00
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.subtract = function (a, b, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
out.x = a.x - b.x;
|
|
|
|
out.y = a.y - b.y;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Multiplies the coordinates of two points to create a new point.
|
2014-04-27 10:09:57 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point.multiply
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} b - The second Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
2013-08-28 14:58:37 +00:00
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.multiply = function (a, b, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
out.x = a.x * b.x;
|
|
|
|
out.y = a.y * b.y;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Divides the coordinates of two points to create a new point.
|
2014-04-27 10:09:57 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point.divide
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} b - The second Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
2013-08-28 14:58:37 +00:00
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.divide = function (a, b, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
out.x = a.x / b.x;
|
|
|
|
out.y = a.y / b.y;
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines whether the two given Point objects are equal. They are considered equal if they have the same x and y values.
|
2014-04-27 10:09:57 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point.equals
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} b - The second Point object.
|
2013-10-01 15:39:39 +00:00
|
|
|
* @return {boolean} A value of true if the Points are equal, otherwise false.
|
2013-08-28 14:58:37 +00:00
|
|
|
*/
|
|
|
|
Phaser.Point.equals = function (a, b) {
|
2014-04-22 00:52:24 +00:00
|
|
|
|
|
|
|
return (a.x === b.x && a.y === b.y);
|
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
};
|
|
|
|
|
2014-04-27 10:09:57 +00:00
|
|
|
/**
|
|
|
|
* Returns the angle between two Point objects.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point.angle
|
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} b - The second Point object.
|
|
|
|
* @return {number} The angle between the two Points.
|
|
|
|
*/
|
|
|
|
Phaser.Point.angle = function (a, b) {
|
|
|
|
|
2014-05-07 15:35:08 +00:00
|
|
|
// return Math.atan2(a.x * b.y - a.y * b.x, a.x * b.x + a.y * b.y);
|
|
|
|
return Math.atan2(a.y - b.y, a.x - b.x);
|
2014-04-27 10:09:57 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a negative Point.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point.negative
|
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.negative = function (a, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
return out.setTo(-a.x, -a.y);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds two 2D Points together and multiplies the result by the given scalar.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point.multiplyAdd
|
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} b - The second Point object.
|
|
|
|
* @param {number} s - The scaling value.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.multiplyAdd = function (a, b, s, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
return out.setTo(a.x + b.x * s, a.y + b.y * s);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-04-27 10:16:06 +00:00
|
|
|
/**
|
|
|
|
* Interpolates the two given Points, based on the `f` value (between 0 and 1) and returns a new Point.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point.interpolate
|
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} b - The second Point object.
|
|
|
|
* @param {number} f - The level of interpolation between the two points. Indicates where the new point will be, along the line between pt1 and pt2. If f=1, pt1 is returned; if f=0, pt2 is returned.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.interpolate = function (a, b, f, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
return out.setTo(a.x + (b.x - a.x) * f, a.y + (b.y - a.y) * f);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2014-04-27 10:09:57 +00:00
|
|
|
/**
|
|
|
|
* Return a perpendicular vector (90 degrees rotation)
|
|
|
|
*
|
|
|
|
* @method Phaser.Point.perp
|
|
|
|
* @param {Phaser.Point} a - The Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.perp = function (a, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
return out.setTo(-a.y, a.x);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a perpendicular vector (-90 degrees rotation)
|
|
|
|
*
|
|
|
|
* @method Phaser.Point.rperp
|
|
|
|
* @param {Phaser.Point} a - The Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.rperp = function (a, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
return out.setTo(a.y, -a.x);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
/**
|
2015-01-05 13:00:07 +00:00
|
|
|
* Returns the euclidian distance of this Point object to the given object (can be a Circle, Point or anything with x/y properties).
|
2014-04-27 10:09:57 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point.distance
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {object} a - The target object. Must have visible x and y properties that represent the center of the object.
|
|
|
|
* @param {object} b - The target object. Must have visible x and y properties that represent the center of the object.
|
2014-11-09 09:42:28 +00:00
|
|
|
* @param {boolean} [round=false] - Round the distance to the nearest integer.
|
2013-10-01 15:39:39 +00:00
|
|
|
* @return {number} The distance between this Point object and the destination Point object.
|
2013-08-28 14:58:37 +00:00
|
|
|
*/
|
|
|
|
Phaser.Point.distance = function (a, b, round) {
|
|
|
|
|
2014-11-09 09:42:28 +00:00
|
|
|
var distance = Phaser.Math.distance(a.x, a.y, b.x, b.y);
|
|
|
|
return round ? Math.round(distance) : distance;
|
2013-08-28 14:58:37 +00:00
|
|
|
|
2013-11-25 03:13:04 +00:00
|
|
|
};
|
2013-08-28 14:58:37 +00:00
|
|
|
|
2014-04-27 10:09:57 +00:00
|
|
|
/**
|
|
|
|
* Project two Points onto another Point.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point.project
|
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} b - The second Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.project = function (a, b, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
var amt = a.dot(b) / b.getMagnitudeSq();
|
|
|
|
|
2014-04-27 11:10:29 +00:00
|
|
|
if (amt !== 0)
|
2014-04-27 10:09:57 +00:00
|
|
|
{
|
|
|
|
out.setTo(amt * b.x, amt * b.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Project two Points onto a Point of unit length.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point.projectUnit
|
|
|
|
* @param {Phaser.Point} a - The first Point object.
|
|
|
|
* @param {Phaser.Point} b - The second Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.projectUnit = function (a, b, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
var amt = a.dot(b);
|
|
|
|
|
2014-04-27 11:10:29 +00:00
|
|
|
if (amt !== 0)
|
2014-04-27 10:09:57 +00:00
|
|
|
{
|
|
|
|
out.setTo(amt * b.x, amt * b.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Right-hand normalize (make unit length) a Point.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point.normalRightHand
|
|
|
|
* @param {Phaser.Point} a - The Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.normalRightHand = function (a, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
return out.setTo(a.y * -1, a.x);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Normalize (make unit length) a Point.
|
|
|
|
*
|
|
|
|
* @method Phaser.Point.normalize
|
|
|
|
* @param {Phaser.Point} a - The Point object.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.normalize = function (a, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
|
|
|
var m = a.getMagnitude();
|
|
|
|
|
2014-04-27 11:10:29 +00:00
|
|
|
if (m !== 0)
|
2014-04-27 10:09:57 +00:00
|
|
|
{
|
|
|
|
out.setTo(a.x / m, a.y / m);
|
|
|
|
}
|
|
|
|
|
|
|
|
return out;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-08-28 14:58:37 +00:00
|
|
|
/**
|
|
|
|
* Rotates a Point around the x/y coordinates given to the desired angle.
|
2014-04-27 10:09:57 +00:00
|
|
|
*
|
2013-10-02 11:11:22 +00:00
|
|
|
* @method Phaser.Point.rotate
|
2013-10-01 12:54:29 +00:00
|
|
|
* @param {Phaser.Point} a - The Point object to rotate.
|
|
|
|
* @param {number} x - The x coordinate of the anchor point
|
|
|
|
* @param {number} y - The y coordinate of the anchor point
|
|
|
|
* @param {number} angle - The angle in radians (unless asDegrees is true) to rotate the Point to.
|
2014-04-26 19:35:31 +00:00
|
|
|
* @param {boolean} [asDegrees=false] - Is the given rotation in radians (false) or degrees (true)?
|
|
|
|
* @param {number} [distance] - An optional distance constraint between the Point and the anchor.
|
2013-10-01 12:54:29 +00:00
|
|
|
* @return {Phaser.Point} The modified point object.
|
2013-08-28 14:58:37 +00:00
|
|
|
*/
|
|
|
|
Phaser.Point.rotate = function (a, x, y, angle, asDegrees, distance) {
|
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
asDegrees = asDegrees || false;
|
|
|
|
distance = distance || null;
|
2013-08-28 14:58:37 +00:00
|
|
|
|
2013-08-31 20:50:34 +00:00
|
|
|
if (asDegrees)
|
|
|
|
{
|
2013-11-13 06:49:24 +00:00
|
|
|
angle = Phaser.Math.degToRad(angle);
|
2013-08-28 14:58:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get distance from origin (cx/cy) to this point
|
2013-08-31 20:50:34 +00:00
|
|
|
if (distance === null)
|
|
|
|
{
|
2013-08-28 14:58:37 +00:00
|
|
|
distance = Math.sqrt(((x - a.x) * (x - a.x)) + ((y - a.y) * (y - a.y)));
|
|
|
|
}
|
|
|
|
|
2014-08-13 00:19:39 +00:00
|
|
|
var requiredAngle = angle + Math.atan2(a.y - y, a.x - x);
|
2014-08-12 23:49:21 +00:00
|
|
|
|
|
|
|
return a.setTo(x + distance * Math.cos(requiredAngle), y + distance * Math.sin(requiredAngle));
|
2013-08-28 14:58:37 +00:00
|
|
|
|
|
|
|
};
|
2014-02-06 12:29:07 +00:00
|
|
|
|
2014-03-31 15:00:55 +00:00
|
|
|
/**
|
|
|
|
* Calculates centroid (or midpoint) from an array of points. If only one point is provided, that point is returned.
|
2014-04-27 10:09:57 +00:00
|
|
|
*
|
2014-03-31 15:00:55 +00:00
|
|
|
* @method Phaser.Point.centroid
|
2014-03-31 14:21:40 +00:00
|
|
|
* @param {Phaser.Point[]} points - The array of one or more points.
|
|
|
|
* @param {Phaser.Point} [out] - Optional Point to store the value in, if not supplied a new Point object will be created.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
|
|
|
*/
|
|
|
|
Phaser.Point.centroid = function (points, out) {
|
|
|
|
|
|
|
|
if (typeof out === "undefined") { out = new Phaser.Point(); }
|
|
|
|
|
2014-04-01 00:30:20 +00:00
|
|
|
if (Object.prototype.toString.call(points) !== '[object Array]')
|
|
|
|
{
|
|
|
|
throw new Error("Phaser.Point. Parameter 'points' must be an array");
|
2014-03-31 14:21:40 +00:00
|
|
|
}
|
|
|
|
|
2014-03-31 15:03:18 +00:00
|
|
|
var pointslength = points.length;
|
|
|
|
|
2014-04-01 00:30:20 +00:00
|
|
|
if (pointslength < 1)
|
|
|
|
{
|
|
|
|
throw new Error("Phaser.Point. Parameter 'points' array must not be empty");
|
2014-03-31 14:21:40 +00:00
|
|
|
}
|
|
|
|
|
2014-04-01 00:30:20 +00:00
|
|
|
if (pointslength === 1)
|
|
|
|
{
|
2014-03-31 14:21:40 +00:00
|
|
|
out.copyFrom(points[0]);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
2014-04-01 00:30:20 +00:00
|
|
|
for (var i = 0; i < pointslength; i++)
|
|
|
|
{
|
2014-03-31 14:21:40 +00:00
|
|
|
Phaser.Point.add(out, points[i], out);
|
|
|
|
}
|
|
|
|
|
2014-03-31 15:03:18 +00:00
|
|
|
out.divide(pointslength, pointslength);
|
2014-03-31 14:21:40 +00:00
|
|
|
|
|
|
|
return out;
|
2014-04-01 00:30:20 +00:00
|
|
|
|
2014-03-31 14:21:40 +00:00
|
|
|
};
|
|
|
|
|
2014-09-17 19:23:28 +00:00
|
|
|
/**
|
2014-09-23 21:23:01 +00:00
|
|
|
* Parses an object for x and/or y properties and returns a new Phaser.Point with matching values.
|
|
|
|
* If the object doesn't contain those properties a Point with x/y of zero will be returned.
|
2014-09-17 19:23:28 +00:00
|
|
|
*
|
2014-09-23 21:23:01 +00:00
|
|
|
* @method Phaser.Point.parse
|
2014-09-17 19:23:28 +00:00
|
|
|
* @static
|
2014-11-30 11:10:52 +00:00
|
|
|
* @param {object} obj - The object to parse.
|
2014-09-23 21:23:01 +00:00
|
|
|
* @param {string} [xProp='x'] - The property used to set the Point.x value.
|
|
|
|
* @param {string} [yProp='y'] - The property used to set the Point.y value.
|
|
|
|
* @return {Phaser.Point} The new Point object.
|
2014-09-17 19:23:28 +00:00
|
|
|
*/
|
|
|
|
Phaser.Point.parse = function(obj, xProp, yProp) {
|
2014-09-23 21:23:01 +00:00
|
|
|
|
2014-09-17 19:23:28 +00:00
|
|
|
xProp = xProp || 'x';
|
|
|
|
yProp = yProp || 'y';
|
|
|
|
|
2014-09-23 21:23:01 +00:00
|
|
|
var point = new Phaser.Point();
|
|
|
|
|
|
|
|
if (obj[xProp])
|
|
|
|
{
|
|
|
|
point.x = parseInt(obj[xProp], 10);
|
2014-09-17 19:23:28 +00:00
|
|
|
}
|
2014-09-23 21:23:01 +00:00
|
|
|
|
|
|
|
if (obj[yProp])
|
|
|
|
{
|
|
|
|
point.y = parseInt(obj[yProp], 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
return point;
|
|
|
|
|
2014-09-17 19:23:28 +00:00
|
|
|
};
|
|
|
|
|
2014-02-06 12:29:07 +00:00
|
|
|
// Because PIXI uses its own Point, we'll replace it with ours to avoid duplicating code or confusion.
|
|
|
|
PIXI.Point = Phaser.Point;
|