mirror of
https://github.com/photonstorm/phaser
synced 2024-11-15 01:17:43 +00:00
Updated jsdocs
This commit is contained in:
parent
03640c2bf9
commit
c20ff295eb
2 changed files with 7 additions and 7 deletions
|
@ -31,7 +31,7 @@ var Vector2 = require('../math/Vector2');
|
|||
* @param {number} [yRadius=0] - The vertical radius of ellipse.
|
||||
* @param {integer} [startAngle=0] - The start angle of the ellipse, in degrees.
|
||||
* @param {integer} [endAngle=360] - The end angle of the ellipse, in degrees.
|
||||
* @param {boolean} [clockwise=false] - Sets if the the ellipse rotation is clockwise (true) or anti-clockwise (false)
|
||||
* @param {boolean} [clockwise=false] - Whether the ellipse angles are given as clockwise (`true`) or counter-clockwise (`false`).
|
||||
* @param {integer} [rotation=0] - The rotation of the ellipse, in degrees.
|
||||
*/
|
||||
var EllipseCurve = new Class({
|
||||
|
|
|
@ -302,12 +302,12 @@ var Path = new Class({
|
|||
* @method Phaser.Curves.Path#ellipseTo
|
||||
* @since 3.0.0
|
||||
*
|
||||
* @param {number} xRadius - The horizontal radius of the ellipse.
|
||||
* @param {number} yRadius - The vertical radius of the ellipse.
|
||||
* @param {number} startAngle - The start angle of the ellipse, in degrees.
|
||||
* @param {number} endAngle - The end angle of the ellipse, in degrees.
|
||||
* @param {boolean} clockwise - Whether the ellipse should be rotated clockwise (`true`) or counter-clockwise (`false`).
|
||||
* @param {number} rotation - The rotation of the ellipse, in degrees.
|
||||
* @param {number} [xRadius=0] - The horizontal radius of ellipse.
|
||||
* @param {number} [yRadius=0] - The vertical radius of ellipse.
|
||||
* @param {integer} [startAngle=0] - The start angle of the ellipse, in degrees.
|
||||
* @param {integer} [endAngle=360] - The end angle of the ellipse, in degrees.
|
||||
* @param {boolean} [clockwise=false] - Whether the ellipse should be drawn clockwise (`true`) or counter-clockwise (`false`).
|
||||
* @param {number} [rotation=0] - The rotation of the ellipse, in degrees.
|
||||
*
|
||||
* @return {Phaser.Curves.Path} This Path object.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue