Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
p5js-week-02 [2023/07/04 23:44] – reina.chen | p5js-week-02 [2023/07/11 22:46] (current) – reina.chen | ||
---|---|---|---|
Line 20: | Line 20: | ||
JavaScript comes with many functions that we can use. Let's talk about some of them, and I'll point out one point that confuses a lot of people when they are starting out. The section below includes some code; try running this code in the console in the browser. Remember, you can get there by pressing F12 (or maybe Fn F12, depending on your computer), or you can get the console from the browser menu. We want to learn about a few important things that we'll need for the future before we start drawing. | JavaScript comes with many functions that we can use. Let's talk about some of them, and I'll point out one point that confuses a lot of people when they are starting out. The section below includes some code; try running this code in the console in the browser. Remember, you can get there by pressing F12 (or maybe Fn F12, depending on your computer), or you can get the console from the browser menu. We want to learn about a few important things that we'll need for the future before we start drawing. | ||
- | - length | + | - [[p5js-week-02# |
- | - booleans | + | - [[p5js-week-02# |
- | - equality | + | - [[p5js-week-02# |
- | - equality vs. assignment | + | - [[p5js-week-02# |
- greater/ | - greater/ | ||
- | - Math.random | + | - [[p5js-week-02# |
- increment | - increment | ||
Line 74: | Line 74: | ||
==== equality ==== | ==== equality ==== | ||
- | Let's talk about the <color black/ | + | Let's talk about the <color black/ |
< | < | ||
Line 102: | Line 102: | ||
</ | </ | ||
- | <color black/ | + | [[p5js-week-02# |
< | < | ||
Line 127: | Line 127: | ||
</ | </ | ||
- | We can get a bigger random number by multiplying the result of <color black/ | + | We can get a bigger random number by multiplying the result of [[p5js-week-02# |
< | < | ||
Line 157: | Line 157: | ||
OK, cool, let's use p5js to make some rainbow toast! We'll talk about these tools today: | OK, cool, let's use p5js to make some rainbow toast! We'll talk about these tools today: | ||
- | - background | + | - [[p5js-week-02# |
- | - RGB colors | + | - [[p5js-week-02# |
- | - HSL color | + | - [[p5js-week-02# |
- | - mouseX and mouseY | + | - [[p5js-week-02# |
- | - text | + | - [[p5js-week-02# |
- | - triangle | + | - [[p5js-week-02# |
- | - making a function called earth | + | - [[p5js-week-02# |
==== background ==== | ==== background ==== | ||
- | Here is a simple example for us to play with. The <color black/ | + | Here is a simple example for us to play with. The <color black/ |
< | < | ||
Line 185: | Line 185: | ||
==== HSLA color ==== | ==== HSLA color ==== | ||
- | Let's specify the color of the box using a different color model: HSLA. <color black/ | + | Let's specify the color of the box using a different color model: |
Hue should be a number between 0 and 359. | Hue should be a number between 0 and 359. | ||
Line 211: | Line 211: | ||
</ | </ | ||
- | By the way, notice how we build a longer string to display by adding mouseX or mouseY (which are numbers) to a string. | + | By the way, notice how we build a longer string to display by adding |
- | There' | + | There' |
https:// | https:// | ||
Line 219: | Line 219: | ||
==== triangle ==== | ==== triangle ==== | ||
- | The trick above is really useful when we want to use the <color black/ | + | The trick above is really useful when we want to use the <color black/ |
< | < | ||
Line 225: | Line 225: | ||
</ | </ | ||
- | There' | + | There' |
https:// | https:// | ||
Line 235: | Line 235: | ||
==== random colors and rainbow toast ==== | ==== random colors and rainbow toast ==== | ||
- | Earlier, we learned about <color black/ | + | Earlier, we learned about [[p5js-week-02# |
There' | There' | ||
Line 253: | Line 253: | ||
==== draw function and frame rate ==== | ==== draw function and frame rate ==== | ||
- | The <color black/ | + | The <color black/ |
< | < | ||
Line 259: | Line 259: | ||
</ | </ | ||
- | We'll think much more about the draw function, animation, and related issues in future lessons. | + | We'll think much more about the [[p5js-week-02# |
==== making a function called earth ==== | ==== making a function called earth ==== | ||
Line 271: | Line 271: | ||
Here, we make a new function: write the function keyword, write a function name (in this case, earth), use parentheses to write some arguments (no arguments in this case), and put the function calls that draw the earth inside the function body (inside the curly braces). | Here, we make a new function: write the function keyword, write a function name (in this case, earth), use parentheses to write some arguments (no arguments in this case), and put the function calls that draw the earth inside the function body (inside the curly braces). | ||
- | Then we can call the function in the draw function by writing this: | + | Then we can call the function in the [[p5js-week-02# |
< | < | ||
earth () | earth () | ||
Line 282: | Line 282: | ||
</ | </ | ||
- | We add arguments for xPosition and yPosition, and then add these numbers to all of the arguments inside the body of the function that control xPosition and yPosition. Then, in the draw function where we call the earth function, we can use arguments that control the position. Try changing the arguments and then re-running the code. You'll see that the earth moves! | + | We add arguments for xPosition and yPosition, and then add these numbers to all of the arguments inside the body of the function that control xPosition and yPosition. Then, in the [[p5js-week-02# |
That's more useful, but now let's see another advantage of having our own function. Let's make several earths! | That's more useful, but now let's see another advantage of having our own function. Let's make several earths! | ||
Line 296: | Line 296: | ||
There' | There' | ||
- | ==== making a better | + | ===== your assignment: |
- | Wow, that's a lot of things to learn. I hope you can remember these things and get more comfortable using them, so please try to use the techniques in this lesson to improve the drawing that you made last time of a flower, a wolf, or a robot. | + | Wow, that's a lot of things to learn. I hope you can remember these things and get more comfortable using them, so please try to use the techniques in this lesson to improve the drawing that you made last time. If you need an idea of what to draw, you could try to use p5js to draw a flower, a wolf, or a robot. |
- | You can use mouseX and mouseY to get better positions. | + | You can use [[p5js-week-02# |
You can add a triangle or two, maybe. | You can add a triangle or two, maybe. | ||
Line 307: | Line 307: | ||
You can even add some random colors. | You can even add some random colors. | ||
+ | |||
+ | **Whatever you draw, definitely make your own functions to do it!** | ||
Please share your new version with your classmates and teachers! | Please share your new version with your classmates and teachers! |