Need to rebuild images with plain prototype labels. --MF, 9/26/18
PG: Islamic art is a great candidate for computer drawing, and the samples in TiF B seem like good ones. I'd prefer to have some good /real/ illustrations. I don't see how the top stuff (everything before TiF B) is Egyptian. Feels like another bow to "some culture" without being genuine. But the project is pretty, so can we give it a learning purpose?
BH: The obvious way to draw the picture in the pink box is as a decorated hexagon.
MF: I want to revise this page. Some suggestions added to the page.
Much Islamic art applies principles of geometry and repeats simple patterns to form complex forms. For example, the Egyptian Motif above has six overlapping rectangles.
In this project, you will learn how to extend your pinwheel
code from Unit 1 to create such intricate patterns.
Why are we giving them the code for these blocks instead of asking that they build and/or import them? I suggest cutting #1 and #2 and merging the first part of #3 into the pink box (I like the #3 images better than those in the pink box anyway). The work starts halfway through problem #3. I want to revise this page, but for now I just moved #10 from a solo FYTD into the ITIT box. --MF, 9/26/18
rectangle
block. pen down
and pen up
blocks inside the rectangle definition. We don't normally do this but here this is done to simplify the more complex code coming ahead. This will ensure that once a rectangle is drawn, the pen is up and you don’t need to worry about unintended scribbles as your drawing sprite continues moving to execute the rest of the code.pinwheel
code you have written in Unit 1.pinwheel with rectangles
block. It will have two more inputs width and length for the width and length of the rectangles.pinwheel
code except that it has the rectangle
block inserted in between the two move
blocks that created the pinwheel branches. when green flag clicked
blockVariable | Minimum | Maximum |
---|---|---|
number of branches | 3 | 36 |
size | 0 | 100 |
backup | 0 | 100 |
width | 0 | 150 |
length | 0 | 150 |
forever
block.warp
block makes sure that the pinwheel with rectangles
is drawn all at once rather than step by step.warp
block in the forever loop and insertingpinwheel with rectangles
code.