diff --git a/src/core/math/shapes/Circle.js b/src/core/math/shapes/Circle.js index e5c8fc9..d505c87 100644 --- a/src/core/math/shapes/Circle.js +++ b/src/core/math/shapes/Circle.js @@ -44,7 +44,6 @@ /** * Creates a clone of this Circle instance * - * @method clone * @return {Circle} a copy of the Circle */ Circle.prototype.clone = function () @@ -55,7 +54,6 @@ /** * Checks whether the x and y coordinates given are contained within this circle * - * @method contains * @param x {number} The X coordinate of the point to test * @param y {number} The Y coordinate of the point to test * @return {boolean} Whether the x/y coordinates are within this Circle @@ -80,7 +78,6 @@ /** * Returns the framing rectangle of the circle as a Rectangle object * -* @method getBounds * @return {Rectangle} the framing rectangle */ Circle.prototype.getBounds = function () diff --git a/src/core/math/shapes/Circle.js b/src/core/math/shapes/Circle.js index e5c8fc9..d505c87 100644 --- a/src/core/math/shapes/Circle.js +++ b/src/core/math/shapes/Circle.js @@ -44,7 +44,6 @@ /** * Creates a clone of this Circle instance * - * @method clone * @return {Circle} a copy of the Circle */ Circle.prototype.clone = function () @@ -55,7 +54,6 @@ /** * Checks whether the x and y coordinates given are contained within this circle * - * @method contains * @param x {number} The X coordinate of the point to test * @param y {number} The Y coordinate of the point to test * @return {boolean} Whether the x/y coordinates are within this Circle @@ -80,7 +78,6 @@ /** * Returns the framing rectangle of the circle as a Rectangle object * -* @method getBounds * @return {Rectangle} the framing rectangle */ Circle.prototype.getBounds = function () diff --git a/src/core/math/shapes/Ellipse.js b/src/core/math/shapes/Ellipse.js index 67cf13e..c694eb0 100644 --- a/src/core/math/shapes/Ellipse.js +++ b/src/core/math/shapes/Ellipse.js @@ -51,7 +51,6 @@ /** * Creates a clone of this Ellipse instance * - * @method clone * @return {Ellipse} a copy of the ellipse */ Ellipse.prototype.clone = function () @@ -62,7 +61,6 @@ /** * Checks whether the x and y coordinates given are contained within this ellipse * - * @method contains * @param x {number} The X coordinate of the point to test * @param y {number} The Y coordinate of the point to test * @return {boolean} Whether the x/y coords are within this ellipse @@ -85,11 +83,10 @@ }; /** -* Returns the framing rectangle of the ellipse as a Rectangle object -* -* @method getBounds -* @return {Rectangle} the framing rectangle -*/ + * Returns the framing rectangle of the ellipse as a Rectangle object + * + * @return {Rectangle} the framing rectangle + */ Ellipse.prototype.getBounds = function () { return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height); diff --git a/src/core/math/shapes/Circle.js b/src/core/math/shapes/Circle.js index e5c8fc9..d505c87 100644 --- a/src/core/math/shapes/Circle.js +++ b/src/core/math/shapes/Circle.js @@ -44,7 +44,6 @@ /** * Creates a clone of this Circle instance * - * @method clone * @return {Circle} a copy of the Circle */ Circle.prototype.clone = function () @@ -55,7 +54,6 @@ /** * Checks whether the x and y coordinates given are contained within this circle * - * @method contains * @param x {number} The X coordinate of the point to test * @param y {number} The Y coordinate of the point to test * @return {boolean} Whether the x/y coordinates are within this Circle @@ -80,7 +78,6 @@ /** * Returns the framing rectangle of the circle as a Rectangle object * -* @method getBounds * @return {Rectangle} the framing rectangle */ Circle.prototype.getBounds = function () diff --git a/src/core/math/shapes/Ellipse.js b/src/core/math/shapes/Ellipse.js index 67cf13e..c694eb0 100644 --- a/src/core/math/shapes/Ellipse.js +++ b/src/core/math/shapes/Ellipse.js @@ -51,7 +51,6 @@ /** * Creates a clone of this Ellipse instance * - * @method clone * @return {Ellipse} a copy of the ellipse */ Ellipse.prototype.clone = function () @@ -62,7 +61,6 @@ /** * Checks whether the x and y coordinates given are contained within this ellipse * - * @method contains * @param x {number} The X coordinate of the point to test * @param y {number} The Y coordinate of the point to test * @return {boolean} Whether the x/y coords are within this ellipse @@ -85,11 +83,10 @@ }; /** -* Returns the framing rectangle of the ellipse as a Rectangle object -* -* @method getBounds -* @return {Rectangle} the framing rectangle -*/ + * Returns the framing rectangle of the ellipse as a Rectangle object + * + * @return {Rectangle} the framing rectangle + */ Ellipse.prototype.getBounds = function () { return new Rectangle(this.x - this.width, this.y - this.height, this.width, this.height); diff --git a/src/core/renderers/webgl/utils/RenderTarget.js b/src/core/renderers/webgl/utils/RenderTarget.js index 44345fa..14f9830 100644 --- a/src/core/renderers/webgl/utils/RenderTarget.js +++ b/src/core/renderers/webgl/utils/RenderTarget.js @@ -120,7 +120,6 @@ /** * Clears the filter texture. * -* @method clear */ RenderTarget.prototype.clear = function() { @@ -201,7 +200,6 @@ /** * Resizes the texture to the specified width and height * - * @method resize * @param width {Number} the new width of the texture * @param height {Number} the new height of the texture */ @@ -239,10 +237,9 @@ }; /** -* Destroys the filter texture. -* -* @method destroy -*/ + * Destroys the filter texture. + * + */ RenderTarget.prototype.destroy = function() { var gl = this.gl;