Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
p5js-week-03 [2023/07/04 23:58] – reina.chen | p5js-week-03 [2023/07/11 22:50] (current) – reina.chen | ||
---|---|---|---|
Line 43: | Line 43: | ||
</ | </ | ||
- | The <color black/ | + | The <color black/ |
< | < | ||
Line 55: | Line 55: | ||
</ | </ | ||
| | ||
- | The variable name on the left followed by the equal sign means we are assigning it. Since we assigned it before, that means we are reassigning it now. The value on the right is the old value plus one. In other words, we are adding one to the current value and then storing that new value in the same box (variable). Try evaluating this line multiple times and see what happens. | + | The variable name on the left followed by the __equal sign__ |
- | In the same way, we can decrement a number. <color black/ | + | In the same way, we can [[p5js-week-03# |
< | < | ||
Line 77: | Line 77: | ||
</ | </ | ||
| | ||
- | In all of the cases above, we assigned a new value to the variable by first writing the variable name on the left and then the new value after writing an equal sign. However, there' | + | In all of the cases above, we assigned a new value to the variable by first writing the variable name on the left and then the new value after writing an __equal sign__. However, there' |
< | < | ||
Line 89: | Line 89: | ||
</ | </ | ||
- | We can use this with a for-loop, which we are going to learn below, to do that gradual color change. When we get to a value of 255 for red (and 0 for the others), we'll get red toast! | + | We can use this with a [[p5js-week-03# |
{{: | {{: | ||
Line 119: | Line 119: | ||
toaster(1000) | toaster(1000) | ||
| | ||
- | It contains a for-loop. A for-loop has a particular structure: the conditions for the for-loop are in __parentheses__ and the body of the for-loop is in __curly braces__: | + | It contains a [[p5js-week-03# |
for () {} | for () {} | ||
Line 127: | Line 127: | ||
{{: | {{: | ||
- | In the parentheses, you need three parts (kind of like butter, jam, and a cup of coffee for your toast): | + | In the __parentheses__, you need three parts (kind of like butter, jam, and a cup of coffee for your toast): |
- a starting value stored in a variable, sometimes called a <color black/ | - a starting value stored in a variable, sometimes called a <color black/ | ||
Line 133: | Line 133: | ||
- a statement which is executed on every loop, usually to [[p5js-week-03# | - a statement which is executed on every loop, usually to [[p5js-week-03# | ||
- | In the curly braces, you put the things that you want to happen on each loop. Remember, the loop is going to run until the stopping value is false. | + | In the __curly braces__, you put the things that you want to happen on each loop. Remember, the loop is going to run until the stopping value is false. |
In the for loop above, notice these things: | In the for loop above, notice these things: | ||
Line 141: | Line 141: | ||
- the third value which is the result of the [[p5js-week-03# | - the third value which is the result of the [[p5js-week-03# | ||
- | What this means is that the for-loop will start the variable i at 0 and increase it by 1 every time. It will continue to run as long as i is less than 10. | + | What this means is that the [[p5js-week-03# |
- | Also notice that the variable i is used in the body of the for-loop in the call of console.log. | + | Also notice that the variable i is used in the body of the [[p5js-week-03# |
==== conditions in a for-loop ==== | ==== conditions in a for-loop ==== | ||
- | There are some details about the conditions for the for loop that we should think about. The first item in the conditions is the <color black/ | + | There are some details about the conditions for the for loop that we should think about. The first item in the conditions is the [[p5js-week-03# |
The first point to be careful about is using the <color black/ | The first point to be careful about is using the <color black/ | ||
- | The second point is that the name of the variable that we use as a counter in the for-loop is up to you to choose. Just like you can name arguments " | + | The second point is that the name of the variable that we use as a [[p5js-week-03# |
- | The third point is that we can then use this counter variable inside the for-loop any way we want. In this function, we are going to collect numbers in a variable and then add the value of i to it on each loop. Notice how i increases, and then the value of the numberCollector variable also increases. | + | The third point is that we can then use this [[p5js-week-03# |
function buildNumber (n) { | function buildNumber (n) { | ||
Line 170: | Line 170: | ||
buildNumber(5) | buildNumber(5) | ||
- | The fourth point is that you can start the counter of the for-loop at any value you want, but it's customary to start at 0. Just so that you can see how it works, let's start a for loop at a different value. Notice that it works the same as 0; we just have to be careful about setting the stopping point. The n argument still controls how many times we loop, but also notice that the value of i is different from our old repeater function. | + | The fourth point is that you can start the [[p5js-week-03# |
function repeaterFrom10 (n) { | function repeaterFrom10 (n) { | ||
Line 182: | Line 182: | ||
repeaterFrom10(10) | repeaterFrom10(10) | ||
- | As always, be careful about the syntax: put the conditions of the for-loop in parentheses | + | As always, be careful about the syntax: put the conditions of the [[p5js-week-03# |
===== for-loops and return statements ===== | ===== for-loops and return statements ===== | ||
- | You have to be careful about where you put the <color black/ | + | You have to be careful about where you put the <color black/ |
The following function does that. Even when you ask it to loop 1,000 times, it stops on the very first loop. | The following function does that. Even when you ask it to loop 1,000 times, it stops on the very first loop. | ||
Line 203: | Line 203: | ||
returnsWrong(1000) | returnsWrong(1000) | ||
- | The key is to put the <color black/ | + | The key is to put the <color black/ |
| | ||
Line 218: | Line 218: | ||
returnsRight(1000) | returnsRight(1000) | ||
| | ||
- | There' | + | There' |
function wordPrinter (word1, n) { | function wordPrinter (word1, n) { | ||
Line 227: | Line 227: | ||
} | } | ||
- | Here, the conditions for the for-loop are wrong. The conditions of the for loop can be found in the parentheses | + | Here, the conditions for the [[p5js-week-03# |
for (let b = 0; b < n; i++) // this is wrong! | for (let b = 0; b < n; i++) // this is wrong! | ||
Line 243: | Line 243: | ||
for (let b = 0; b < n; b++) | for (let b = 0; b < n; b++) | ||
- | It's OK to use b, i, cherries, or any other variable we want; we just have to be sure that the same one is used for all three parts. If we want a traditional counter for our for-loop. i is usually the best choice because people are used to it. | + | It's OK to use b, i, cherries, or any other variable we want; we just have to be sure that the same one is used for all three parts. If we want a traditional |
for (let i = 0; i < n; i++) | for (let i = 0; i < n; i++) | ||
Line 255: | Line 255: | ||
OK, now let's try to use what we've learned for drawing in p5js. | OK, now let's try to use what we've learned for drawing in p5js. | ||
- | - using a for-loop to gradually change colors | + | - using a [[p5js-week-03# |
- filling the screen with earths using our earth function | - filling the screen with earths using our earth function | ||
- learning the remainder operator to get even more earths on the screen | - learning the remainder operator to get even more earths on the screen | ||
Line 262: | Line 262: | ||
==== using a for-loop to gradually change colors ==== | ==== using a for-loop to gradually change colors ==== | ||
- | Look at this example. We'll use a for-loop to increase the value of a variable, like we talked about above. | + | Look at this example. We'll use a [[p5js-week-03# |
< | < | ||
Line 272: | Line 272: | ||
==== many earths with our earth function and a for-loop ==== | ==== many earths with our earth function and a for-loop ==== | ||
- | Last time we put many earths on the screen, we had to write out our earth function call several times. One of the cool things about programming is that we can let the computer do the boring work like that for us. Let's use a for-loop to do it instead. Look at lines 17-19. | + | Last time we put many earths on the screen, we had to write out our earth function call several times. One of the cool things about programming is that we can let the computer do the boring work like that for us. Let's use a [[p5js-week-03# |
< | < | ||
Line 280: | Line 280: | ||
==== filling the screen with earths using a for-loop and the remainder operator ==== | ==== filling the screen with earths using a for-loop and the remainder operator ==== | ||
- | That for-loop only gives us one row of earths. What if we want to fill the whole screen? To do that, let's learn another tool: the <color black/ | + | That [[p5js-week-03# |
Try this in the console: | Try this in the console: | ||
Line 314: | Line 314: | ||
We can use it to produce a looping series of numbers (or to keep numbers within a certain range) when we have another number that is increasing or decreasing. | We can use it to produce a looping series of numbers (or to keep numbers within a certain range) when we have another number that is increasing or decreasing. | ||
- | In this code, we use the remainder operator and Math.floor to get several rows of earths. Study this code and see if you can figure out how it works. | + | In this code, we use the [[p5js-week-03# |
< | < |