File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -286,7 +286,7 @@ p5.prototype.atan2 = function(y, x) {
286
286
* takes into account the current <a href="#/p5/angleMode">angleMode()</a>.
287
287
*
288
288
* @method cos
289
- * @param {Number } angle the angle.
289
+ * @param {Number } angle the angle in radians unless specified by <a href="/reference/p5/angleMode/">angleMode()</a> .
290
290
* @return {Number } cosine of the angle.
291
291
*
292
292
* @example
@@ -366,7 +366,7 @@ p5.prototype.cos = function(angle) {
366
366
* takes into account the current <a href="#/p5/angleMode">angleMode()</a>.
367
367
*
368
368
* @method sin
369
- * @param {Number } angle the angle.
369
+ * @param {Number } angle the angle in radians unless specified by <a href="/reference/p5/angleMode/">angleMode()</a> .
370
370
* @return {Number } sine of the angle.
371
371
*
372
372
* @example
@@ -447,7 +447,7 @@ p5.prototype.sin = function(angle) {
447
447
* <a href="#/p5/angleMode">angleMode()</a>.
448
448
*
449
449
* @method tan
450
- * @param {Number } angle the angle.
450
+ * @param {Number } angle the angle in radians unless specified by <a href="/reference/p5/angleMode/">angleMode()</a> .
451
451
* @return {Number } tangent of the angle.
452
452
*
453
453
* @example
You can’t perform that action at this time.
0 commit comments