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/05 00:25] – reina.chen | p5js-week-02 [2023/07/11 22:46] (current) – reina.chen | ||
---|---|---|---|
Line 158: | Line 158: | ||
- [[p5js-week-02# | - [[p5js-week-02# | ||
- | - RGB colors | + | - [[p5js-week-02# |
- [[p5js-week-02# | - [[p5js-week-02# | ||
- [[p5js-week-02# | - [[p5js-week-02# | ||
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 <color black/ | + | 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 <color black/ | + | 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 <color black/ | + | 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 [[p5js-week-02# | You can use [[p5js-week-02# | ||
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! |