nature-of-code / noc-examples-processing

Repository for example code from The Nature of Code book
MIT License
2.56k stars 951 forks source link

Cut redundant noStroke() #42

Closed scotthmurray closed 10 years ago

scotthmurray commented 10 years ago

It's not necessary to have both noStroke() methods here; just one will do. :)

Also, the code snippet in the text uses white circles:

fill(255,10);

…but the code example uses black circles on a while background:

fill(0, 10);

It may be useful to either change the example here and screenshot to sync up, or change the text snippet.

shiffman commented 10 years ago

Thanks, I think the design of the screenshots will stay as is so I should definitely fix up the code snippets.