shiffman / LearningProcessing

A repo for examples from the book Learning Processing
http://learningprocessing.com
606 stars 276 forks source link

error on Page 258 #234

Open mattebass opened 4 years ago

mattebass commented 4 years ago

Hi, I'm not sure but seems there's an error at page 250: the row and columns are flipped. Because the first index of a two-dimensional array access the array of array, this index is accessing the rows, and the second index is accessing column number. So the statement at the end of the page should be: int[][] myArray = new int[rows][columns], and even the cycle is flipped, so should be for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { myArray[i][j] = 0; } } am I missing something or It's as like as I'm arguing? Thanks