Use Pen functions to draw square and circle shapes
Create re-usable code "functions" by using custom Code Blocks
Use the custom Code Blocks to make patterns and illustrations
Go To: http://scratch.mit.edu/
From the Scratch menu, click "Create" to start a new project
Click new costume paint icon and draw a dot. Delete the 2 cat costumes. (Note: you can hide the dot for drawing, but we'll leave it on to view drawings in progress and start points.)
Pen functions: "clear" erases all lines, "pen down" to draw, "pen up" to not draw. Draw a square: repeat 4 times -> draw line with distance and direction.
Add random Pen color for fun and so we can see multiple squares.
Draw 2 squares by duplicating the code and providing a new start position; Notice the connnecting line.
By adding a "pen up" block before the second square is drawn, there won't be a connecting line.
A more effecient way, of course, is a nested repeat Loop....
An even better way is to create custom function Code Blocks - Click on "More Blocks" and select "Make a Block" to create one.
Name your custom Code Block "Create Square" and add a "number input" variable called "size".
Our "Create Square" custom code block is ready for scripts.
Move the chain of scripts to make a square under the custom "Create Square" code block.
Notice the new "Create Square" script block; you can now use it in your main scripts. This is much more efficient and keeps your common functions tidy.
Tweak our "Create Square" custom block and make a pattern in main script chain. (Why is "point in direction" block moved out of the function?)
Play with the number variables and add random numbers to create unique patterns...
To create a circle, we need to use math including the infamous "Pi"!
Combine Shapes of various sizes / orientations to make advanced patterns... Try to create your own patterns! (Notice the "pen size" blocks used here).
You've used the drawing Pen and learned about custom Code Blocks! Now, here are a few Challenges:
Experiment and create your own patterns or random designs using these code blocks.
Remix other drawing projects on Scratch (example: spirograph). Use the Pen tool to create different shapes and illustrations.
Apply re-usable custom Code Block techniques in your other projects.
If you got stuck anywhere, see the completed project with comments here: http://scratch.mit.edu/projects/42599958/!
/