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/05 00:06] – 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 [[p5js-week-03# | 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 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 182: | Line 182: | ||
repeaterFrom10(10) | repeaterFrom10(10) | ||
- | As always, be careful about the syntax: put the conditions of the [[p5js-week-03# | + | 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 ===== | ||
Line 227: | Line 227: | ||
} | } | ||
- | Here, the conditions for the [[p5js-week-03# | + | 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 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 [[p5js-week-03# | + | That [[p5js-week-03# |
Try this in the console: | Try this in the console: |