processing / p5.js

p5.js is a client-side JS platform that empowers artists, designers, students, and anyone to learn to code and express themselves creatively on the web. It is based on the core principles of Processing. http://twitter.com/p5xjs —
http://p5js.org/
GNU Lesser General Public License v2.1
21.66k stars 3.32k forks source link

Add circle() function #3375

Closed L05 closed 5 years ago

L05 commented 5 years ago

Add circle() function for K-12 education/accessibility, as suggested in this thread.

Nature of issue?

Most appropriate sub-area of p5.js?

vedhant commented 5 years ago

Is this to be added to 2D Rendering?

lmccart commented 5 years ago

this method could just be an alias that calls p5.prototype.ellipse(x, y, 2*r, 2*r)

vedhant commented 5 years ago

Yup. I would like to do it!

nimishagarwal76 commented 5 years ago

3419 resolves this issue

lmccart commented 5 years ago

addressed with https://github.com/processing/p5.js/pull/3419