Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
p5js-week-05 [2022/05/25 23:54] – renick | p5js-week-05 [2023/07/29 23:42] (current) – renick | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== p5js week 06 ====== | + | ====== p5js week 05 ====== |
{{: | {{: | ||
Line 42: | Line 42: | ||
Bon appetit! | Bon appetit! | ||
- | Imagine if every time you wanted someone to __make toast__ you had to tell them each and every step? It would be really inconvenient! Luckily, we can just tell someone "hey, please make me some toast" and they can do it because they know that ' | + | Imagine if every time you wanted someone to __make toast__ you had to tell them each and every step? It would be really inconvenient! Luckily, |
- | That's a big part of what language and programming are all about. We wrap up some complicated situation and give it one word. In programming, | + | That's a big part of what language and programming are all about. We wrap up some complicated situation and give it one word. In programming, |
====== generalizing about toast ====== | ====== generalizing about toast ====== | ||
Line 62: | Line 62: | ||
- and so on... | - and so on... | ||
- | Even though these are all different kinds of toast, they' | + | Even though these are all different kinds of toast, they' |
====== procedure for toast ====== | ====== procedure for toast ====== | ||
Line 70: | Line 70: | ||
(photo from https:// | (photo from https:// | ||
- | There' | + | There' |
- you push the lever down to start the toaster before you get the bread | - you push the lever down to start the toaster before you get the bread | ||
Line 76: | Line 76: | ||
- you put the bread on the plate before you toast it | - you put the bread on the plate before you toast it | ||
- | Each one is a failure to make toast. You or the person who you are making toast for is going to be really disappointed. Having the right steps in the right order means having the right procedure. That's what programmers mean when they talk about procedural programming: | + | Each one is a failure to make toast. You or the person who you are making toast for is going to be really disappointed. |
====== JavaScript ====== | ====== JavaScript ====== | ||
Line 99: | Line 99: | ||
https:// | https:// | ||
- | That is something that we might want to do many times. In programming, | + | That is something that we might want to do many times. In programming, |
First, look at the steps that we did last time. I'll leave out some things to focus on the stuff about color. Here's the code: | First, look at the steps that we did last time. I'll leave out some things to focus on the stuff about color. Here's the code: | ||
Line 129: | Line 129: | ||
- later in our code, we could use the colors from the new array | - later in our code, we could use the colors from the new array | ||
- | First, let's try to __encapsulate__ | + | First, let's try to encapsulate |
===== making a someColors function ===== | ===== making a someColors function ===== | ||
Line 188: | Line 188: | ||
</ | </ | ||
- | ===== when you do something a lot, generalize! ===== | + | ===== when you do something a lot, encapsulate and generalize! ===== |
- | This time we made an array with colors. Another time we might make an array with sizes. Another time it might be shapes. It would be cool if we had a function that could help us to make arrays in every case. When you do something more than one time (especially if you do often), write a function instead of writing out a lot of complicated code each time. Don't repeat yourself. After you encapsulate it, you add some arguments to make it more useful. That's what generalization is. | + | This time we made an array with colors. Another time we might make an array with sizes. Another time it might be shapes. It would be cool if we had a function that could help us to make arrays in every case. |
It's just like what I said earlier, we want the computer and other programmers to understand that "make toast" means a certain set of steps. Here, we want the computer and other programmers to understand a particular way of making an array. We encapsulate the process of making an array and then we generalize to make it more useful in more cases. | It's just like what I said earlier, we want the computer and other programmers to understand that "make toast" means a certain set of steps. Here, we want the computer and other programmers to understand a particular way of making an array. We encapsulate the process of making an array and then we generalize to make it more useful in more cases. | ||
Line 263: | Line 263: | ||
</ | </ | ||
- | However, there' | + | However, there' |
< | < | ||
Line 275: | Line 275: | ||
</ | </ | ||
- | This symbol => is the arrow function operator. On the left side, we put the argument. On the right side we write what we want to do. If it's simple like this (one argument, one step on the right side) then you don't need any parentheses, | + | This symbol |
If you want to learn more about arrow functions right away, take a look at this page: | If you want to learn more about arrow functions right away, take a look at this page: | ||
Line 314: | Line 314: | ||
That's also cool, right? Using buildArray and an arrow function, it became very easy to make someColors. | That's also cool, right? Using buildArray and an arrow function, it became very easy to make someColors. | ||
+ | |||
+ | < | ||
+ | <iframe src=" | ||
+ | </ | ||
====== p5js ====== | ====== p5js ====== | ||
- | Now we can learn some new things in p5js before we apply the techniques above to our drawings. Here's what we want to learn: | + | Now we can learn some new things in p5js before we apply the techniques |
- line | - line | ||
Line 341: | Line 345: | ||
=====beginShape and endShape===== | =====beginShape and endShape===== | ||
- | Up to now, we have been drawing things using collections of shapes to make a more complicated shape. However, there is a set of functions we can use to draw irregular shapes (ones that aren't rects, ellipses, etc). That's the set that is shown in examples here using beginShape etc.: | + | Up to now, we have been drawing things using collections of shapes to make a more complicated shape. However, there is a set of functions we can use to draw irregular shapes (ones that aren't rects, ellipses, etc). That's the set that is shown in examples here using <color black/ |
https:// | https:// | ||
Line 351: | Line 355: | ||
</ | </ | ||
- | First, you call the beginShape function. Then you give a list of vertices (vertices is the plural of vertex). A vertex is a point, and we describe it with arguments for x position and y position. When you have described all of the points, you call the endShape function. You can use as many vertices as you want. These shapes have four, but you can have three, five, or as many as you want. | + | First, you call the beginShape function. Then you give a list of vertices (vertices is the plural of vertex). A vertex is a point, and we describe it with arguments for x position and y position. When you have described all of the points, you call the <color black/ |
If you use CLOSE as the argument to endShape, p5js will automatically connect the last point to the first point and fill the shape according to the current state of fill; that means how it is filled depends on the last time you called the fill function, just like for rect or ellipse. If you don't use CLOSE, it **will not** connect the last point to the first point with a line. | If you use CLOSE as the argument to endShape, p5js will automatically connect the last point to the first point and fill the shape according to the current state of fill; that means how it is filled depends on the last time you called the fill function, just like for rect or ellipse. If you don't use CLOSE, it **will not** connect the last point to the first point with a line. | ||
Line 365: | Line 369: | ||
</ | </ | ||
- | Actually, there' | + | Notice how the scaleFactor argument can be used to make the shape bigger or smaller. In the function call, try changing scaleFactor from 1 to 2, and then to 5. Also try changing the other arguments and see what happens. |
+ | |||
+ | Instead | ||
- | Now we can use that in a for-loop to draw funky random shaped toast. | + | Actually, there' |
Wait a minute, this looks more like a bunch of green onions than toast... | Wait a minute, this looks more like a bunch of green onions than toast... | ||
Line 389: | Line 395: | ||
Try to use these techniques to make a p5js drawing which has 100 or more pieces of Terrific Toast. | Try to use these techniques to make a p5js drawing which has 100 or more pieces of Terrific Toast. | ||
- | ====== your NEW drawings ====== | + | ====== your NEW drawings |
Let's start new drawings. Make a canvas that is 1800 wide and 900 tall. I want you to fill it with either: | Let's start new drawings. Make a canvas that is 1800 wide and 900 tall. I want you to fill it with either: |