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 [2022/05/05 00:21] – renick | p5js-week-03 [2023/07/11 22:50] (current) – reina.chen | ||
---|---|---|---|
Line 22: | Line 22: | ||
First, let's talk about these JavaScript concepts. | First, let's talk about these JavaScript concepts. | ||
- | - __reassigning variables__ | + | - [[p5js-week-03# |
- | - __for-loops__ | + | - [[p5js-week-03# |
==== reassigning variables and incrementing ==== | ==== reassigning variables and incrementing ==== | ||
Line 35: | Line 35: | ||
Butter and strawberries might be kind of hard for us to code just now. Let's think about our rainbow toast. We know how to do random colors, but how could we make each piece of toast change color a little bit, slowly going from one color to another? We know from last time that we can represent color with numbers, like RGB. If we slowly change one or more of these numbers, we could slowly change the color. | Butter and strawberries might be kind of hard for us to code just now. Let's think about our rainbow toast. We know how to do random colors, but how could we make each piece of toast change color a little bit, slowly going from one color to another? We know from last time that we can represent color with numbers, like RGB. If we slowly change one or more of these numbers, we could slowly change the color. | ||
- | We're going to need to understand how to increment variables. " | + | We're going to need to understand how to [[p5js-week-03# |
First, remember how variables work. Let's declare a variable: | First, remember how variables work. Let's declare a variable: | ||
Line 43: | Line 43: | ||
</ | </ | ||
- | The __let__ | + | 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. " | + | In the same way, we can [[p5js-week-03# |
< | < | ||
Line 63: | Line 63: | ||
</ | </ | ||
- | JavaScript gives us a special operator for incrementing. We can use it this way. | + | JavaScript gives us a special operator for [[p5js-week-03# |
< | < | ||
Line 69: | Line 69: | ||
</ | </ | ||
| | ||
- | The ++ operator increases a value by one. Try evaluating this line multiple times and see what happens. | + | The <color black/ |
- | If you want to increment by another value, you have to use the previous method which is shown above. | + | If you want to [[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 97: | Line 97: | ||
=====for-loop===== | =====for-loop===== | ||
- | Now we want to start learning a really important concept: for-loops. Above, we were incrementing numbers. It might be OK to repeat that code three times, but repeating it five times would be a little annoying. Imagine if you had to do it 10 times, or 100 times. What if you had to do it 1,000 times? Can you imagine toasting 1,000 pieces of toast? | + | Now we want to start learning a really important concept: |
{{: | {{: | ||
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 counter | + | - a starting value stored in a variable, sometimes called a <color black/ |
- a stopping value which evaluates to a boolean (true or false; we talked about booleans last time) | - a stopping value which evaluates to a boolean (true or false; we talked about booleans last time) | ||
- | - a statement which is executed on every loop, usually to increment the variable with the starting value/__counter__ | + | - 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 139: | Line 139: | ||
- the starting value is 0, and it's stored in the variable called i | - the starting value is 0, and it's stored in the variable called i | ||
- the stopping value is 10 | - the stopping value is 10 | ||
- | - the third value which is the result of the incrementing operator ++ | + | - 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 __counter__. | + | 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 let statement. We'll talk about " | + | 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__ | + | 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 return statement. If the return is inside the body of the for-loop, the loop will stop as soon as the return is evaluated. That means if you do some computation and then return the result, the loop stops immediately! It's like stopping the toaster before our bread is toasted. | + | 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 return statement after the for-loop, like this: | + | 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 235: | Line 235: | ||
- starting point | - starting point | ||
- stopping point | - stopping point | ||
- | - how to increment | + | - how to [[p5js-week-03# |
- | That means that in this case, the count is measured with b. However, b is not incremented. Only i is incremented. " | + | That means that in this case, the count is measured with b. However, b is not [[p5js-week-03# |
The conditions should be like this: | The conditions should be like this: | ||
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. | + | 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 remainder operator. It's the % sign. An operator is a symbol we put between two items to do something to them, like + - * and /. | + | That [[p5js-week-03# |
Try this in the console: | Try this in the console: | ||
Line 288: | Line 288: | ||
</ | </ | ||
- | The percent sign (%) in JavaScript is the remainder operator. The remainder is the amount that is left over after you divide one integer by another. When you divide 4 by 2, there' | + | The percent sign (%) in JavaScript is the <color black/ |
< | < | ||
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# |
< | < |