### Most appropriate sub-area of p5.js? - [x] Math ### p5.js version 1.11.10 ### Steps to reproduce this p5.Vector.fromAngle returns a 3d Vector while the Docstring says it creates a 2d Vector. The Z coordinate is set to 0. ### Snippet: ```js const v = p5.Vector.fromAngle(1, 1); console.log(v.values[2] === 0); console.log(v.values.length === 3); ``` This is confusing and might cause errors.