Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
p5js-week-09 [2022/06/25 10:23] – renick | p5js-week-09 [2023/06/29 22:48] (current) – reina.chen | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== p5js week 09 ====== | ====== p5js week 09 ====== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | (photo from https:// | ||
Phew! It's been lots of toast over the past eight lessons! We'd better take a lesson to catch up and review what we've learned. | Phew! It's been lots of toast over the past eight lessons! We'd better take a lesson to catch up and review what we've learned. | ||
- | We'll review in two parts: general JavaScript and then p5js. | + | We'll review in two parts: general JavaScript and then p5js. You should also review how to put your work on the wiki and make sure you've added all of your work there. That lets you share it with your teachers and classmates, and eventually with the public, too! |
+ | |||
+ | Be sure to ask your teacher if you need help with any of the items listed in the review below. OK, let's review! | ||
===== JavaScript ===== | ===== JavaScript ===== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | (photo from https:// | ||
You can open the console in the browser by pressing F12, selecting " | You can open the console in the browser by pressing F12, selecting " | ||
+ | |||
+ | We can store <color black/ | ||
+ | |||
+ | < | ||
+ | let aNumber = 10; | ||
+ | </ | ||
Making functions is super important! The basic pattern is like this: | Making functions is super important! The basic pattern is like this: | ||
Line 28: | Line 44: | ||
</ | </ | ||
- | The arguments are the input to the function, and the return statement is the output. | + | We can <color black/ |
- | When we wrap up some calculations inside of a function, that's called encapsulation. | + | < |
+ | addTwoThenTimes100 (aNumber) | ||
+ | </ | ||
+ | |||
+ | The <color black/ | ||
+ | |||
+ | We also learned another way to write functions called <color black/ | ||
+ | |||
+ | < | ||
+ | |||
+ | // let functionName = argument => stuff you want to do | ||
+ | |||
+ | // which looks like this real function: | ||
+ | |||
+ | let addTwoThenTimes100_2 = number => (number + 2) * 100 | ||
+ | |||
+ | addTwoThenTimes100_2 (aNumber) | ||
+ | </ | ||
+ | |||
+ | When we wrap up some calculations inside of a function, that's called | ||
+ | |||
+ | < | ||
+ | function addTwoThenTimesX (number, x) { | ||
+ | let preNumber = number + 2; | ||
+ | let finalNumber = preNumber * x; | ||
+ | return finalNumber | ||
+ | } | ||
+ | |||
+ | addTwoThenTimesX (aNumber, 500) | ||
+ | </ | ||
- | We can use many kinds of values in our functions, including numbers, strings (" | + | We can use many kinds of values in our functions, including numbers, |
Be careful about what order you do stuff; that's called thinking carefully about your procedure. | Be careful about what order you do stuff; that's called thinking carefully about your procedure. | ||
- | We can group data together, also called structuring data, into arrays or objects. | + | We can group data together, also called |
- | Arrays can tell us how long they are when we use the length method. There are also cool methods like forEach, map, and filter that let us avoid using for-loops. | + | <color black/ |
- | However, if we want to use a for-loop, we can. Remember the basic pattern of a for-loop: | + | However, if we want to use a <color black/ |
< | < | ||
Line 60: | Line 105: | ||
</ | </ | ||
+ | We made some useful functions, including randomRange, | ||
+ | |||
+ | Often when we use objects, we make a <color black/ | ||
+ | |||
+ | ===== p5js ===== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | (photo from https:// | ||
+ | |||
+ | You've learned about the <color black/ | ||
+ | |||
+ | You know how to use some basic shapes like rect and ellipse; these use x and y coordinates for their positions. | ||
+ | |||
+ | We made a Point class to make positions and changing them easier. | ||
+ | |||
+ | You've learned about fill and stroke, and you know how to use a color picker to find the numbers for colors that you want to use. We learned about <color black/ | ||
+ | |||
+ | You know how to draw text in p5js, including adding text that tells you where the mouse is. | ||
+ | |||
+ | We also learned how to make not only triangles but other shapes using our own randomShape function. That required using <color black/ | ||
+ | |||
+ | We learned how to move the shapes and rotate them using <color black/ | ||
+ | |||
+ | ===== finishing your latest drawing and getting all your work on the wiki ===== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | (photo from https:// | ||
+ | |||
+ | For a couple of weeks, you should have been working on your third drawing. | ||
+ | |||
+ | - draw an animal, plant, or a complicated shape from your imagination | ||
+ | - there should be many different versions of it, like different sizes and different colors | ||
+ | - make a class to draw it | ||
+ | - use buildArray to fill an array of objects from your class; try to make 100 or more! | ||
+ | - use filter to change your drawing in some way | ||
+ | |||
+ | Can you make some progress with this and add it to your wiki page? Be sure to add your other drawings, too. Ask the teachers for help if you need it. They'd be happy to help! |