prisonerjohn / processing-web

0 stars 0 forks source link

[CLOSED] point() draws double points in P2D or P3D mode #107

Open prisonerjohn opened 10 years ago

prisonerjohn commented 10 years ago

Issue by jwdunn1 Friday Apr 26, 2013 at 05:44 GMT Originally opened as https://github.com/processing/processing-web/issues/107


Processing 2.0b8

void setup() { size(100,100, P2D); }

void draw() { background(0); stroke(255); for (int i=0; i<50; i++) { point(i_2, i_2); } }

produces: Capture2

Remove the ", P2D" and run to see the expected result.

prisonerjohn commented 10 years ago

Comment by REAS Friday Apr 26, 2013 at 18:51 GMT


Thanks for posting. This is a bug report for processing/processing, not processing/processing-web. Please add it there. The processing/processing-web repo is for web and documentation issues.