Most appropriate sub-area of p5.js?
p5.js version
v2.3.0-rc.1
Web browser and version
Brave 1.90.122
Operating system
Linux Mint 6.8.0-117
Steps to reproduce this
I was trying v2.3.0-rc.1 with the code snippet from issue 8117 to see if this release candidate fixed that issue. The createVector() line started giving a warning in version 2.1 to always use arguments when calling createVector. But v2.3.0-rc.1 gives a hard error "TypeError: this._friendlyError is not a function".
Snippet:
function setup() {
createCanvas(400,400);
const v=createVector(100,0);
const w=createVector();
v.sub(w);
console.log(v.toString());
v.rotate(1);
console.log(v.toString());
}
Most appropriate sub-area of p5.js?
p5.js version
v2.3.0-rc.1
Web browser and version
Brave 1.90.122
Operating system
Linux Mint 6.8.0-117
Steps to reproduce this
I was trying v2.3.0-rc.1 with the code snippet from issue 8117 to see if this release candidate fixed that issue. The
createVector()line started giving a warning in version 2.1 to always use arguments when callingcreateVector. But v2.3.0-rc.1 gives a hard error "TypeError: this._friendlyError is not a function".Snippet: