processing-docs
processing-docs copied to clipboard
Code 14-21 Vs Image and code in the exercise files
MInor thing: the code on page 183, exercise 14-21 shows noStroke and fill while the image that illustrates the code and the code itself in the exercise files shows noFill and stroke:
background(0); noStroke(); fill(255, 48);
vs
background(0); noFill(); stroke(204);
Thanks for the report. I'll have a look.