nature-of-code / noc-book

The Nature of Code book (archived repo, see README for new repo / build system!)

Home Page:http://natureofcode.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mistake in The Nature of Code book

simon-tiger opened this issue · comments

I came across a mistake in Chapter 2 Example 2.5 (Fluid resistance): movers[i] = new Mover(random(0.1,5),0,0); should be movers[i] = new Mover(random(0.1,5),i*20,0);