Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
p5js-week-09 [2022/06/25 11:29] renickp5js-week-09 [2023/06/29 22:48] (current) reina.chen
Line 19: Line 19:
 You can open the console in the browser by pressing F12, selecting "developer's tools" from the menu, or right-clicking to inspect and then choosing the console tab. You can open the console in the browser by pressing F12, selecting "developer's tools" from the menu, or right-clicking to inspect and then choosing the console tab.
  
-We can store values in variables; then we can use them later. When we do that, we use the "let" keyword.+We can store <color black/pink>values</color> in <color black/pink>variables</color>; then we can use them later. When we do that, we use the <color black/yellow>"let"</color> keyword.
  
 <code> <code>
Line 44: Line 44:
 </code> </code>
  
-We can call a function by using its name and then giving values for the arguments. We can use variables we declared before as the arguments. That works like this:+We can <color black/pink>call a function</color> by using its name and then giving values for the arguments. We can use variables we declared before as the arguments. That works like this:
  
 <code> <code>
Line 50: Line 50:
 </code> </code>
  
-The arguments are the input to the function, and the return statement is the output.+The <color black/pink>arguments</color> are the input to the function, and the <color black/pink>return statement</color> is the output.
  
-We also learned another way to write functions called arrow functions. That pattern looks like:+We also learned another way to write functions called <color black/pink>arrow</color> functions. That pattern looks like:
  
 <code> <code>
Line 65: Line 65:
 </code> </code>
  
-When we wrap up some calculations inside of a function, that's called encapsulation. When we change a value inside and make it an argument so that we can use the function in more situations, we're doing what's called generalization. That's like this:+When we wrap up some calculations inside of a function, that's called <color black/pink>encapsulation</color>. When we change a value inside and make it an argument so that we can use the function in more situations, we're doing what's called <color black/pink>generalization</color>. That's like this:
  
 <code> <code>
Line 77: Line 77:
 </code> </code>
  
-We can use many kinds of values in our functions, including numbers, strings ("hi!"), booleans (true or false).+We can use many kinds of values in our functions, including numbers, <color black/pink>strings</color> ("hi!"), <color black/pink>booleans</color> (true or false).
  
 Be careful about what order you do stuff; that's called thinking carefully about your procedure. Be careful about what order you do stuff; that's called thinking carefully about your procedure.
  
-We can group data together, also called structuring data, into arrays or objects.+We can group data together, also called <color black/pink>structuring data</color>, into arrays or objects.
  
-Arrays can tell us how long they are when we use the length method. There are also cool methods like forEach, map, and filter (check lessons 6, 7, and 8) that let us avoid using for-loops. We also learned about adding things to arrays using push and unshift, as well as removing things from arrays using pop.+<color black/pink>Arrays</color> can tell us how long they are when we use the length method. There are also cool methods like <color black/pink>forEach</color><color black/pink>map</color>, and <color black/pink>filter</color> (check lessons 6, 7, and 8) that let us avoid using for-loops. We also learned about adding things to arrays using <color black/pink>push</color> and <color black/pink>unshift</color>, as well as removing things from arrays using <color black/pink>pop</color> .
  
-However, if we want to use a for-loop, we can. Remember the basic pattern of a for-loop:+However, if we want to use a <color black/pink>for-loop</color>, we can. Remember the basic pattern of a for-loop:
  
 <code> <code>
Line 107: Line 107:
 We made some useful functions, including randomRange, pick, and buildArray. We made some useful functions, including randomRange, pick, and buildArray.
  
-Often when we use objects, we make a class that makes it easier to make objects. We can make objects using the constructor from the class. To use the constructor, we start with the "new" keyword.+Often when we use objects, we make a <color black/pink>class</color> that makes it easier to make objects. We can make objects using the <color black/pink>constructor</color> from the class. To use the constructor, we start with the <color black/yellow>"new"</color> keyword.
  
 ===== p5js ===== ===== p5js =====
Line 115: Line 115:
 (photo from https://www.flickr.com/photos/30478819@N08/50322224721) (photo from https://www.flickr.com/photos/30478819@N08/50322224721)
  
-You've learned about the setup and draw functions.+You've learned about the <color black/pink>setup</color> and <color black/pink>draw</color> functions.
  
 You know how to use some basic shapes like rect and ellipse; these use x and y coordinates for their positions. You know how to use some basic shapes like rect and ellipse; these use x and y coordinates for their positions.
Line 121: Line 121:
 We made a Point class to make positions and changing them easier. We made a Point class to make positions and changing them easier.
  
-You've learned about fill and stroke, and you know how to use a color picker to find the numbers for colors that you want to use. We learned about RGB color values and HSL color values (go back and review lesson 2).+You've learned about fill and stroke, and you know how to use a color picker to find the numbers for colors that you want to use. We learned about <color black/pink>RGB color values</color> and <color black/pink>HSL color values</color> (go back and review lesson 2).
  
 You know how to draw text in p5js, including adding text that tells you where the mouse is. You know how to draw text in p5js, including adding text that tells you where the mouse is.
  
-We also learned how to make not only triangles but other shapes using our own randomShape function. That required using beginShape and endShape.+We also learned how to make not only triangles but other shapes using our own randomShape function. That required using <color black/pink>beginShape</color> and <color black/pink>endShape</color>.
  
-We learned how to move the shapes and rotate them using transform and rotate, and we also learned how to get back to the original rotation and size using resetMatrix.+We learned how to move the shapes and rotate them using <color black/pink>transform</color> and <color black/pink>rotate</color>, and we also learned how to get back to the original rotation and size using <color black/pink>resetMatrix</color>.
  
 ===== finishing your latest drawing and getting all your work on the wiki ===== ===== finishing your latest drawing and getting all your work on the wiki =====
  • p5js-week-09.1656181755.txt.gz
  • Last modified: 3 years ago
  • by renick