mirror of
https://github.com/photonstorm/phaser
synced 2025-03-04 23:37:19 +00:00
Fixed this
return types for Phaser.Geom.Ellipse
This commit is contained in:
parent
c8f6dfdabe
commit
5d11497e67
1 changed files with 4 additions and 4 deletions
|
@ -176,7 +176,7 @@ var Ellipse = new Class({
|
|||
* @param {number} width - The width of the ellipse.
|
||||
* @param {number} height - The height of the ellipse.
|
||||
*
|
||||
* @return {Phaser.Geom.Ellipse} This Ellipse object.
|
||||
* @return {this} This Ellipse object.
|
||||
*/
|
||||
setTo: function (x, y, width, height)
|
||||
{
|
||||
|
@ -195,7 +195,7 @@ var Ellipse = new Class({
|
|||
* @method Phaser.Geom.Ellipse#setEmpty
|
||||
* @since 3.0.0
|
||||
*
|
||||
* @return {Phaser.Geom.Ellipse} This Ellipse object.
|
||||
* @return {this} This Ellipse object.
|
||||
*/
|
||||
setEmpty: function ()
|
||||
{
|
||||
|
@ -214,7 +214,7 @@ var Ellipse = new Class({
|
|||
* @param {number} x - The x position of the center of the ellipse.
|
||||
* @param {number} y - The y position of the center of the ellipse.
|
||||
*
|
||||
* @return {Phaser.Geom.Ellipse} This Ellipse object.
|
||||
* @return {this} This Ellipse object.
|
||||
*/
|
||||
setPosition: function (x, y)
|
||||
{
|
||||
|
@ -236,7 +236,7 @@ var Ellipse = new Class({
|
|||
* @param {number} width - The width of the ellipse.
|
||||
* @param {number} [height=width] - The height of the ellipse.
|
||||
*
|
||||
* @return {Phaser.Geom.Ellipse} This Ellipse object.
|
||||
* @return {this} This Ellipse object.
|
||||
*/
|
||||
setSize: function (width, height)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue