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:19] renickp5js-week-09 [2023/06/29 22:48] (current) reina.chen
Line 8: Line 8:
  
 We'll review in two parts: general JavaScript and then p5js. You should also review how to put your work on the wiki and make sure you've added all of your work there. That lets you share it with your teachers and classmates, and eventually with the public, too! We'll review in two parts: general JavaScript and then p5js. You should also review how to put your work on the wiki and make sure you've added all of your work there. That lets you share it with your teachers and classmates, and eventually with the public, too!
 +
 +Be sure to ask your teacher if you need help with any of the items listed in the review below. OK, let's review!
  
 ===== JavaScript ===== ===== JavaScript =====
Line 17: 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 42: 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 48: 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 63: 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 75: 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 105: 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 =====
  
-You've learned about the setup and draw functions.+{{:various-toast-with-topping.png?600|}} 
 + 
 +(photo from https://www.flickr.com/photos/30478819@N08/50322224721) 
 + 
 +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 115: 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 <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 ===== 
 + 
 +{{:avocado-toast-2.png?600|}} 
 + 
 +(photo from https://www.flickr.com/photos/92800334@N02/49013804871)
  
-We learned how to move the shapes and rotate them using transform and rotateand we also learned how to get back to the original rotation and size using resetMatrix.+For a couple of weeksyou should have been working on your third drawing
  
 +  - draw an animal, plant, or a complicated shape from your imagination
 +  - there should be many different versions of it, like different sizes and different colors
 +  - make a class to draw it
 +  - use buildArray to fill an array of objects from your class; try to make 100 or more!
 +  - use filter to change your drawing in some way
  
 +Can you make some progress with this and add it to your wiki page? Be sure to add your other drawings, too. Ask the teachers for help if you need it. They'd be happy to help!
  • p5js-week-09.1656181146.txt.gz
  • Last modified: 3 years ago
  • by renick