X Tutup
The Wayback Machine - https://web.archive.org/web/20201109225749/https://github.com/processing/processing-docs/issues/367
Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
AlvaroLau opened this issue Jan 5, 2016 · 1 comment
Open

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

AlvaroLau opened this issue Jan 5, 2016 · 1 comment
Assignees

Comments

@AlvaroLau
Copy link

@AlvaroLau AlvaroLau commented Jan 5, 2016

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

@REAS REAS self-assigned this Jan 7, 2016
@REAS
Copy link
Member

@REAS REAS commented Jan 7, 2016

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Linked pull requests

Successfully merging a pull request may close this issue.

None yet
2 participants
You can’t perform that action at this time.
X Tutup