Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
p5js-week-07 [2022/06/11 00:49] – [structuring data using arrays, and using push, pop, and unshift to add and remove items from those arrays] renick | p5js-week-07 [2023/06/26 00:48] (current) – reina.chen | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== p5js week 07 ====== | ====== p5js week 07 ====== | ||
- | We're halfway through our course, so it's a good time to review before we take on some new techniques for improving our coding and our drawing. So what have we studied? | + | {{: |
+ | |||
+ | (photo from https:// | ||
+ | |||
+ | We're halfway through our course. We've talked a lot about toast and JavaScript, so it's a good time to review before we take on some new techniques for improving our coding and our drawing. After we review, we want to try once more to polish up these drawings that we've been working on recently: | ||
+ | |||
+ | - hearts, stars, and smiley faces, 100+ of each | ||
+ | - three types of aliens/ | ||
+ | |||
+ | Let's review first. So what have we studied? | ||
- assigning variables | - assigning variables | ||
Line 18: | Line 27: | ||
- setup and draw functions | - setup and draw functions | ||
- background | - background | ||
+ | - text | ||
- colors | - colors | ||
- shapes | - shapes | ||
Line 39: | Line 49: | ||
=====big ideas===== | =====big ideas===== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | (photo from https:// | ||
Let's review the really big ideas first! | Let's review the really big ideas first! | ||
- | - encapsulation | + | - **encapsulation** |
- | - generalization | + | - **generalization** |
- | When we make a function which contains a procedure, we are using encapsulation. | + | When we make a function which contains a procedure, we are using <color black/ |
< | < | ||
Line 57: | Line 71: | ||
</ | </ | ||
- | We studied procedures and encapsulation here: | + | When we add arguments to our function so that the function can be used in more cases, we are using <color black/ |
- | + | ||
- | When we add arguments to our function so that the function can be used in more cases, we are using generalization. | + | |
< | < | ||
Line 71: | Line 83: | ||
</ | </ | ||
- | We learned about generalization here: | + | We are also using <color black/ |
- | + | ||
- | We are also using generalization when we structure our data into a class and use a constructor with arguments. | + | |
< | < | ||
Line 88: | Line 98: | ||
===== JavaScript review ===== | ===== JavaScript review ===== | ||
- | Let's take a quick look at the various JavaScript that we have learned. | + | {{: |
+ | |||
+ | (photo from https:// | ||
+ | |||
+ | Now we want do the more close-up review of the various JavaScript that we have learned. | ||
==== assigning variables ==== | ==== assigning variables ==== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | (photo from https:// | ||
Remember, variables are names that we can give to pieces of data, like this: | Remember, variables are names that we can give to pieces of data, like this: | ||
Line 112: | Line 130: | ||
====making functions, including using arrow functions==== | ====making functions, including using arrow functions==== | ||
- | We make functions starting with the " | + | We make functions starting with the <color black/ |
- | Remember, the arguments are the input to our function: | + | Remember, the <color black/ |
< | < | ||
Line 123: | Line 141: | ||
</ | </ | ||
- | Don't forget the return to get some output from the function! | + | Don't forget the <color black/ |
- | We can also make functions in the arrow function style. One way is to assign it to a variable: | + | We can also make functions in the <color black/ |
< | < | ||
Line 149: | Line 167: | ||
howMuchToast3(numberOfPiecesOfToast) | howMuchToast3(numberOfPiecesOfToast) | ||
</ | </ | ||
+ | |||
+ | All of these functions can tell us how much toast we're having for breakfast. | ||
+ | |||
+ | {{: | ||
+ | |||
+ | (photo from https:// | ||
====various operators==== | ====various operators==== | ||
- | We've practice several operators like all of the ones for arithmetic (+, -, *, / ), and the remainder operator (%) and increment operator (++) as well. | + | We've practice several operators like all of the ones for arithmetic (+, -, *, / ), and the <color black/ |
We can use them to do math anywhere, like this: | We can use them to do math anywhere, like this: | ||
Line 162: | Line 186: | ||
====using booleans (true and false)==== | ====using booleans (true and false)==== | ||
- | One operator that we learned about when we studied for-loops is the > (greater than) operator. There are also the < (less than) operator, the >= (greater than or equal) operator and the <= (less than or equal) operator. There' | + | One operator that we learned about when we studied for-loops is the |
< | < | ||
Line 172: | Line 196: | ||
====structuring data using arrays, and using push, pop, and unshift to add and remove items from those arrays==== | ====structuring data using arrays, and using push, pop, and unshift to add and remove items from those arrays==== | ||
- | We can collect data and put it into structure. One very important structure is arrays. We use push and unshift to add data to arrays. Let's do that for everyone' | + | We can collect data and put it into structure. One very important structure is <color black/ |
< | < | ||
Line 186: | Line 210: | ||
everyonesToastOrder | everyonesToastOrder | ||
+ | </ | ||
+ | |||
+ | Don't forget that you can get items from an array using the <color black/ | ||
+ | |||
+ | < | ||
+ | everyonesToastOrder[0] | ||
+ | everyonesToastOrder[1] | ||
+ | everyonesToastOrder[2] | ||
</ | </ | ||
====for-loops for repeating actions==== | ====for-loops for repeating actions==== | ||
+ | We have learned how to make for-loops to do things repeatedly. A <color black/ | ||
- | ====structuring data using objects==== | + | We can use one with the things we've made above. Let's find out how much toast we have to make to fill everyone' |
+ | < | ||
+ | function totalToast (toastArray) { | ||
+ | let total = 0; | ||
+ | for (let i = 0; i < toastArray.length; | ||
+ | total = total + toastArray[i] | ||
+ | } | ||
+ | return total | ||
+ | } | ||
+ | < | ||
- | ====making classes so that making objects is easier and making those objects more useful==== | + | We can call that function like this: |
+ | < | ||
+ | totalToast (everyonesToastOrder) | ||
+ | </ | ||
+ | ====using forEach instead of a for-loop==== | ||
- | ===== p5js review ===== | + | We can rewrite totalToast using <color black/ |
+ | < | ||
+ | function totalToast2 (toastArray) { | ||
+ | let total = 0; | ||
+ | toastArray.forEach(x => total = total + x); | ||
+ | return total | ||
+ | } | ||
+ | </ | ||
+ | ====structuring data using objects==== | ||
- | ====setup and draw functions==== | + | We have another way to structure toast, not just as arrays. That is <color black/ |
+ | There are <color black/ | ||
- | ====background==== | + | < |
+ | let kateToast2 | ||
+ | name: " | ||
+ | quantity: howMuchToast(2), | ||
+ | type: " | ||
+ | } | ||
+ | </ | ||
+ | ====making classes so that making objects is easier and making those objects more useful==== | ||
- | ====colors==== | + | Since we want to make a lot of objects like this, we can make a class. A <color black/ |
+ | < | ||
+ | class ToastOrder { | ||
+ | constructor (name, quantity, type) { | ||
+ | this.name = name; | ||
+ | this.quantity = howMuchToast(quantity); | ||
+ | this.type = type | ||
+ | } | ||
+ | } | ||
+ | </ | ||
- | ====shapes==== | + | When we want to use the class, we call the constructor with the <color black/ |
+ | < | ||
+ | let kateToast3 = new ToastOrder (' | ||
+ | let ellaToast3 = new ToastOrder (' | ||
+ | let lynnToast3 = new ToastOrder (' | ||
+ | let toastOrders = [kateToast3, | ||
+ | </ | ||
- | ====rotate==== | + | Have a look at one of the ToastOrders that we've made: |
+ | < | ||
+ | kateToast3 | ||
+ | </ | ||
+ | Remember, to get the value of a property, we just use its name with a dot after the object name. | ||
- | =====useful tools we've made===== | + | < |
+ | kateToast3.quantity; | ||
+ | lynnToast3.type | ||
+ | </ | ||
+ | We can then modify totalToast to work on the objects like this: | ||
+ | < | ||
+ | function totalToast3 (toastArray) { | ||
+ | let total = 0; | ||
+ | toastArray.forEach(x => total = total + x.quantity); | ||
+ | return total | ||
+ | } | ||
+ | </ | ||
- | ====randomInteger==== | + | Now try it out: |
+ | < | ||
+ | totalToast3 (toastOrders) | ||
+ | </ | ||
- | ====pick==== | + | **And that is a quick review of all of the JavaScript that we've learned!** Now that we have a class for ToastOrders, |
+ | {{: | ||
- | ====buildArray==== | + | (photo from https:// |
+ | ===== p5js review ===== | ||
- | ====a Point class==== | + | Now that we've reviewed how to code __the data of toast__, let's review how to program __a drawing of that toast__. |
+ | Here's an example in p5js that uses **everything above plus a lot of the things that we've studied before about p5js and some tools we've made**. See if you can find each of these things in the code below. | ||
+ | - setup and draw functions | ||
+ | - background | ||
+ | - text | ||
+ | - colors | ||
+ | - shapes | ||
+ | - buildArray | ||
+ | - a Point class | ||
+ | < | ||
+ | <iframe src=" | ||
+ | </ | ||
+ | |||
+ | ==== adding some other things to make it cuter ==== | ||
+ | |||
+ | Now we can use some of the other things that we've learned about to make the drawing cuter. Look for these things in this revised version. We'll also reorganize the code just a little so that it makes more sense. | ||
+ | |||
+ | - rotate (including angleMode) | ||
+ | - randomInteger | ||
+ | - pick | ||
+ | |||
+ | Also notice the addition of noLoop to stop the animation. | ||
+ | |||
+ | < | ||
+ | <iframe src=" | ||
+ | </ | ||
===== Now for something new: a shape function ===== | ===== Now for something new: a shape function ===== | ||
+ | |||
+ | Let's get back to making random shapes, which we might used to make weird slices of toast. | ||
Now we have a Point class. Using that abstraction, | Now we have a Point class. Using that abstraction, | ||
Line 262: | Line 386: | ||
You can see after you run this a few times that the shapes created aren't always great when the Points are random. You can think about some ways to solve this. Still, this will be easy to use if you specify the Points. | You can see after you run this a few times that the shapes created aren't always great when the Points are random. You can think about some ways to solve this. Still, this will be easy to use if you specify the Points. | ||
- | This sometimes makes what is called a self-intersecting | + | This sometimes makes what is called a __self-intersecting |
https:// | https:// | ||
Line 272: | Line 396: | ||
===== algorithms ===== | ===== algorithms ===== | ||
- | We want either convex or concave polygons. We can write a set of rules to give us the output we want. We know one word for this: __procedure__. Another word we can use to call such sets of rules is __" | + | We want either convex or concave polygons. We can write a set of rules to give us the output we want. We know one word for this: <color black/ |
https:// | https:// | ||
Line 288: | Line 412: | ||
===== turning our algorithm into an abstraction ===== | ===== turning our algorithm into an abstraction ===== | ||
- | We want an abstraction, | + | We want an <color black/ |
In this case, we need some components. We'll need to: | In this case, we need some components. We'll need to: | ||
Line 334: | Line 458: | ||
</ | </ | ||
- | Now we can put these together to make a function that give us a list of points to be used to make a non-intersecting | + | Now we can put these together to make a function that give us a list of points to be used to make a __non-intersecting |
- | + | ||
- | https:// | + | |
- | + | ||
- | https:// | + | |
- | + | ||
- | You can learn more about map here: | + | |
- | + | ||
- | https:// | + | |
< | < | ||
Line 354: | Line 470: | ||
pointsForConvexShape(new Point(200, | pointsForConvexShape(new Point(200, | ||
</ | </ | ||
+ | |||
+ | ===== map ===== | ||
+ | |||
+ | Like forEach, <color black/ | ||
+ | |||
+ | For example, if we have an array of numbers, we can do some math with those numbers and get a new array. | ||
+ | |||
+ | < | ||
+ | let numberOfSlicesOfToast = [2, | ||
+ | |||
+ | let lotsMoreToast = numberOfSlicesOfToast.map(t => t *10) | ||
+ | </ | ||
+ | |||
+ | That's a lot of toast, but it was pretty easy to get those numbers by using map. | ||
+ | |||
+ | You can learn more about map here: | ||
+ | |||
+ | https:// | ||
===== a full example ===== | ===== a full example ===== | ||
- | Then we can use our shapeFromPoints function to draw it. | + | Then we can use our shapeFromPoints function to draw it. You'll notice that we still sometimes get a self-intersecting polygon, but it's much less common. We could keep working on this algorithm to get one that is perfect, but let's stop here for this lesson. |
< | < | ||
Line 363: | Line 497: | ||
</ | </ | ||
- | ===== making your own class ===== | + | ===== making your own class for your drawings |
+ | |||
+ | {{: | ||
+ | |||
+ | (photo from https:// | ||
+ | |||
+ | Now you're ready to get back to your customized personal toast, uh, drawings... | ||
+ | |||
+ | We've been working on these drawings: | ||
+ | |||
+ | - hearts, stars, and smiley faces, 100+ of each | ||
+ | - three types of aliens/ | ||
+ | |||
+ | Now we have some more useful tools to apply to those drawings. | ||
- | Now we have some more useful tools. It's time to use these tools to make your own class if you haven' | + | Make your own class if you haven' |
- give your class a name to describe what you are drawing; be sure to capitalize the first letter: class Alien, class Heart, etc. | - give your class a name to describe what you are drawing; be sure to capitalize the first letter: class Alien, class Heart, etc. | ||
Line 371: | Line 518: | ||
- add a draw method that we can call inside of the p5js draw function in order to draw the objects | - add a draw method that we can call inside of the p5js draw function in order to draw the objects | ||
+ | Be sure to put your drawing on your page on the wiki and share screen shots in the chat rooms! | ||