- This event has passed.
6pm-Intro To Python- Joshua
January 30 @ 6:00 pm - 7:00 pm
Today We Do
- Reviewed Projects
- Talked about changing colors with fish (how to cycle colors)
Homework
Remember, you need something that changes color. To make that easier, make sure the thing you want to change color have a color attribute
- Below I have all the things you need to complete but I have specifics
- Justin: You need to convert your fish and your jellyfish into “functions ” with x,y coordinates. Update Your A and O so that have “holes”. Also make more sea creatures
- Remember the steps
- Create the object starting at 0,0
- replace all 0’s that have to do with location with x, or y
- replace all other numbers with x+20 or y-70 or x-30
- ex. turtle.goto(60,-60)-> turtle.goto(x+60,y-60)
- Make Sure you adjust your heading to zero
- Remember the steps
- Jacob:
- You need One other object (i.e the helicopter), update your grenade/mine, and add more people/tanks to your picture so its’s full
- Maybe at background objects as well (clouds/mountains
- Make Sure you change color correctly
- You need One other object (i.e the helicopter), update your grenade/mine, and add more people/tanks to your picture so its’s full
- Chloe: Lets aim for 4-6 Objects with functions, your letters done as functions, and have a color change
- Justin: You need to convert your fish and your jellyfish into “functions ” with x,y coordinates. Update Your A and O so that have “holes”. Also make more sea creatures
- Make Progress on your project
- Justin: Ocean Composistion
- Overall Good Image, but half of it is empty, lower the floor slightly, maybe add the top of the waves , add more of your fish
- Your letters (make sure there straight, update it to be cleaner, update it so you can change the color of your functions)
- Your axolotol (probably your most complicated, a circle head and a few hand drawn items quarter circles, etc.)
- your fish
- your seaweed
- Your starfish
- your turtle
- your other objects
- Each of these should be a function, and most likely have the option to change location (x,y and color)
- Overall Good Image, but half of it is empty, lower the floor slightly, maybe add the top of the waves , add more of your fish
- Chloe: Mountain house with animals
- You got a basic structure down, now its time to draw
- Your letters (Made of Squares, circles, Polygons)
- Your mountains
- Your House
- Your two animals
- Your Sun
- Clouds
- Each of these should be its own function
- Note, your word should be a function and your letters be a function
- Example for the word mat
- def word(x,y,color)
- draw_m(x,y,color)
- draw_a(x,y,color)
- draw_t(x,y,color))
- Each of these should be a function, and most likely have the option to change location (x,y and color)
- Note, your word should be a function and your letters be a function
- You got a basic structure down, now its time to draw