Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
p5js-week-12 [2022/07/16 06:56] – renick | p5js-week-12 [2023/06/29 23:02] (current) – reina.chen | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== p5js week 12 ====== | ====== p5js week 12 ====== | ||
- | Last time, we looked at if-statements. Remember, here's the basic pattern for an if statement: | + | {{: |
+ | |||
+ | (photo from https:// | ||
+ | |||
+ | Last time, we looked at <color black/ | ||
if () {} else {} | if () {} else {} | ||
- | We also did this example about a toaster: | + | This is the example |
toasterPluggedIn = false; | toasterPluggedIn = false; | ||
Line 20: | Line 24: | ||
====== using else ====== | ====== using else ====== | ||
- | We use " | + | We use <color black/ |
toasterPluggedIn = "i forgot" | toasterPluggedIn = "i forgot" | ||
Line 27: | Line 31: | ||
You can see that " | You can see that " | ||
- | We could do that with toast, too: | + | {{: |
+ | |||
+ | (photo from https:// | ||
+ | |||
+ | We could do that with toast, too. Below the function, there are three calls of the function. Each one prints a different string to the console based on the values of the three variables customerOrder1, | ||
| | ||
function toppingForToast (customerOrder) { | function toppingForToast (customerOrder) { | ||
Line 34: | Line 42: | ||
topping = " | topping = " | ||
} | } | ||
- | else topping = customerOrder | + | else {topping = customerOrder |
console.log ("This toast should have " + topping + " on it.") | console.log ("This toast should have " + topping + " on it.") | ||
+ | } | ||
return topping | return topping | ||
} | } | ||
Line 68: | Line 77: | ||
====== using else if ====== | ====== using else if ====== | ||
- | Sometimes we have more than one condition; in those cases, we can continue to use new " | + | Sometimes we have more than one condition; in those cases, we can continue to use new " |
+ | |||
+ | We can modify our basic if-statement reference to include else if like this: | ||
+ | |||
+ | if () {} else if () {} else {} | ||
+ | |||
+ | You can use as many "else if"s as you want. Of course, it can look messy if there are many of them, but it works. If you have more than two or three, you might want to think about whether there is a better way to write your code. | ||
+ | |||
+ | ===== the includes method ===== | ||
+ | |||
+ | To do that, let's learn a new JavaScript method called " | ||
+ | |||
+ | "some delicious toast for breakfast" | ||
+ | "some delicious toast for breakfast" | ||
+ | |||
+ | You can see that " | ||
+ | |||
+ | You can read more about includes here: | ||
+ | |||
+ | https:// | ||
+ | |||
+ | ===== toppingForToast with else if ===== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | (photo from https:// | ||
+ | |||
+ | Let's use "else if" to improve our toppingForToast function, too. We'll automatically put butter on the toast, which means we'll add butter to all customer orders unless the customer says "no butter" | ||
+ | |||
+ | function toppingForToast (customerOrder) { | ||
+ | let topping = customerOrder; | ||
+ | if (topping == undefined) { | ||
+ | topping = " | ||
+ | } | ||
+ | else if | ||
+ | (topping.includes(" | ||
+ | topping = customerOrder | ||
+ | } | ||
+ | else {topping = customerOrder + " and butter" | ||
+ | console.log ("This toast should have " + topping + " on it." | ||
+ | return topping | ||
+ | } | ||
+ | |||
+ | let customerOrder1 = "grape jelly no butter"; | ||
+ | let customerOrder2 = " | ||
+ | let customerOrder3 = " | ||
+ | let customerOrder4 = undefined; | ||
+ | |||
+ | toppingForToast (customerOrder4) | ||
===== drawing a heart ===== | ===== drawing a heart ===== | ||
+ | We can use "else if" to change some of the brown toast to hearts before we change the rest of the toast to Stars. | ||
+ | |||
+ | Like above, we'll make a Heart class. What are the vertices that we'll need for a heart? There are eight points, 0 through 7, which you can see in this picture: | ||
+ | |||
+ | {{: | ||
===== freaky pink toast with stars and hearts===== | ===== freaky pink toast with stars and hearts===== | ||
Line 80: | Line 142: | ||
<iframe src=" | <iframe src=" | ||
</ | </ | ||
+ | |||
+ | ===== your drawing using else and else if ===== | ||
+ | |||
+ | Last time, you might have started a drawing using an if-statement. Like we said, be creative! Try drawing something that you haven' | ||
+ | |||
+ | Like the toast drawing above, make a drawing of 100 or more of something using your own class. In it, use an if-statement to change some of the objects. You might change them based on: | ||
+ | - their location | ||
+ | - their size | ||
+ | - their color | ||
+ | |||
+ | You can add classes for other kinds of objects just like we did with the stars and hearts above. | ||
+ | |||
+ | In the end, we should be able to see the results of the if-statement clearly, just like the freaky pink toast example above. | ||
+ | |||
+ | Be sure to post your drawing to your wiki page. | ||
+ | |||
+ | ===== conclusion ===== | ||
+ | |||
+ | This is also the end of our course. I hope you've enjoyed thinking about toast, JavaScript, and p5js with us. Please keep drawing with code, and be sure to share your progress with us! | ||
+ | |||