LearningProcessing
LearningProcessing copied to clipboard
A repo for examples from the book Learning Processing
the pythagorean theorem is wrong should be: ``` a^2 + b^2 = c^2 c = sqrt(a^2 + b^2) ``` oy.
Hi Daniel, In these exercise solutions is the just the exercise itself, no solution! and i'm stuck Cheers
Hello: http://learningprocessing.com/examples/chp23/example-23-05-mouse-history-pvector --> ``` // Grab the current PVector PVector position = (PVector)history.get(i); ```
Page 127, inside the void drawCar function, just after the line of code ‘fill(c);’, you need the line ‘rect(x, y, theSize, theSize/2);’
The Yahoo weather API has recently changed, and this example needs a little massaging. Ref: https://github.com/processing/processing/issues/4422 Will send a minimal PR that shouldn't require too much change to the text....
Is this clear enough in chapter 5?
when it gets to the end it resets to 0. make a reference to this being problematic and later in book solution of ArrayList.
page 340. The script is missing a line of code: after video = new Capture(this, cols, rows); there should be video.start();
In Section 4-2, _Variable declaration and initialization_, there's an error in the second paragraph. "...and must start with a letter..." However, identifiers can start with an underscore. Java's identifier rules...