processing-docs icon indicating copy to clipboard operation
processing-docs copied to clipboard

Code 14-21 Vs Image and code in the exercise files

Open AlvaroLau opened this issue 9 years ago • 1 comments

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);

AlvaroLau avatar Jan 05 '16 15:01 AlvaroLau

Thanks for the report. I'll have a look.

REAS avatar Jan 07 '16 19:01 REAS