Daniel Shiffman

Results 387 issues of Daniel Shiffman

I get a lot of inquiries regarding translation, should write up a quick FAQ to point people towards.

The old Processing wiki with more info no longer exists, I should build out the example and include it as part of the book itself.

code

Making a note that I am adding a reference to QuadTrees in chapter 6. Edits happening in https://github.com/nature-of-code/noc-book-2/pull/98. * [ ] update examples: https://github.com/nature-of-code/noc-examples-p5.js/issues/97 * [ ] revisit the QuadTree...

illustration

Maybe a more environmentally friendly scenario would be nice? Or weave something in about sustainability and public transportation, etc. > **_Feedback_**: Complex systems often include a feedback loop where the...

I am switching some examples in chapter 6 to use `p5.Vector.fromAngle()`. I should check and see if this is mentioned in chapter 3 and if not, add in a mention!

Chapter 4 covers `for of` loops and also mentions higher order functions like `filter()`. I may want to mention the existence of `forEach()` and `for in` as well which often...

nature-of-code/noc-book-2#75 is now merged but one thing I want to go back and look at is how the `origin` is stored and intialized with a particle system. Overall I find...

Just a note here that the book will require a pass over to check for consistencies of curly vs. plain quotes. The rules should be as follows: 1. When quoting...

Noting that in my examples I just use a multiplier to tie radius to mass. ```javascript this.radius = mass * 8; ``` Another, perhaps more accurate, way to approach this...

Almost all of the objects in the book are drawn with `ellipse()`. As I am going through I am removing the 4th argument since p5 supports 3 arguments `(x, y,...