/** * The Point object represents a location in a two-dimensional coordinate system, where x represents * the horizontal axis and y represents the vertical axis. * An observable point is a point that triggers a callback when the point's position is changed. * * @class * @memberof PIXI */ export default class ObservablePoint { /** * @param {Function} cb - callback when changed * @param {object} scope - owner of callback * @param {number} [x=0] - position of the point on the x axis * @param {number} [y=0] - position of the point on the y axis */ constructor(cb, scope, x = 0, y = 0) { this._x = x; this._y = y; this.cb = cb; this.scope = scope; } /** * Sets the point to a new x and y position. * If y is omitted, both x and y will be set to x. * * @param {number} [x=0] - position of the point on the x axis * @param {number} [y=0] - position of the point on the y axis */ set(x, y) { const _x = x || 0; const _y = y || ((y !== 0) ? _x : 0); if (this._x !== _x || this._y !== _y) { this._x = _x; this._y = _y; this.cb.call(this.scope); } } /** * Copies x and y from the given point * * @param {PIXI.Point} p - The point to copy from. * @returns Returns itself. */ copyFrom(p) { if (this._x !== p.x || this._y !== p.y) { this._x = p.x; this._y = p.y; this.cb.call(this.scope); } return this; } /** * Copies x and y into the given point * * @param {PIXI.Point} p - The point to copy. * @returns Given point with values updated */ copyTo(p) { p.set(this._x, this._y); return p; } /** * The position of the displayObject on the x axis relative to the local coordinates of the parent. * * @member {number} */ get x() { return this._x; } set x(value) // eslint-disable-line require-jsdoc { if (this._x !== value) { this._x = value; this.cb.call(this.scope); } } /** * The position of the displayObject on the x axis relative to the local coordinates of the parent. * * @member {number} */ get y() { return this._y; } set y(value) // eslint-disable-line require-jsdoc { if (this._y !== value) { this._y = value; this.cb.call(this.scope); } } }