Skip to content

Commit c93d233

Browse files
author
Lauren McCarthy
committed
Merge pull request #1387 from LujunWeng/more-readable-parameters
make ellipse parameter names more readable
2 parents a7a89b2 + a5c392e commit c93d233

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/core/2d_primitives.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,10 +127,10 @@ p5.prototype.arc = function(x, y, w, h, start, stop, mode) {
127127
* origin may be changed with the ellipseMode() function.
128128
*
129129
* @method ellipse
130-
* @param {Number} a x-coordinate of the ellipse.
131-
* @param {Number} b y-coordinate of the ellipse.
132-
* @param {Number} c width of the ellipse.
133-
* @param {Number} d height of the ellipse.
130+
* @param {Number} x x-coordinate of the ellipse.
131+
* @param {Number} y y-coordinate of the ellipse.
132+
* @param {Number} w width of the ellipse.
133+
* @param {Number} h height of the ellipse.
134134
* @return {p5} the p5 object
135135
* @example
136136
* <div>

0 commit comments

Comments
 (0)