We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa4de60 commit fe0421fCopy full SHA for fe0421f
src/math/trigonometry.js
@@ -284,7 +284,6 @@ p5.prototype.radians = angle => angle * constants.DEG_TO_RAD;
284
* Calling <a href="#/p5/angleMode">angleMode()</a> with no arguments returns current anglemode.
285
* @method angleMode
286
* @param {Constant} mode either RADIANS or DEGREES
287
- * @chainable
288
* @example
289
* <div>
290
* <code>
@@ -318,7 +317,6 @@ p5.prototype.angleMode = function(mode) {
318
317
} else if (mode === constants.DEGREES || mode === constants.RADIANS) {
319
this._angleMode = mode;
320
}
321
- return this;
322
};
323
324
/**
0 commit comments