Difference between revisions of "Flags with Rectangles Tutorial"
(Undo revision 10968 by Jiroclefey (talk)) |
|||
Line 1: | Line 1: | ||
<shell import='shells.xml#raster'/>{{Flags Tutorial}}__TOC__ | <shell import='shells.xml#raster'/>{{Flags Tutorial}}__TOC__ | ||
* You may want to review: [[Drawing_Rectangles]] before tackling these questions. | * You may want to review: [[Drawing_Rectangles]] before tackling these questions. | ||
− | * You might want to try [[coordinates exercises]] if you are not comfortable with x,y coordinates. | + | * You might want to try [[coordinates exercises]] if you are not comfortable with x ,y coordinates. |
[[Experiment in interaction]] | [[Experiment in interaction]] | ||
==Libya== | ==Libya== |
Revision as of 12:20, 11 September 2014
- You may want to review: Drawing_Rectangles before tackling these questions.
- You might want to try coordinates exercises if you are not comfortable with x ,y coordinates.
Libya
The flag of Libya is a simple green rectangle.
Try the program as it is given, then change it so that the green rectangle is 150 wide.
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
France
The flag of France is blue, white and red.
The code given draws only one of the three rectangles required and it is in the wrong place.
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
Germany
The flag of Germany is black, red and yellow.
Only one of the three rectangles has been drawn - and that one is in the wrong place.
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
Japan
- The flag of Japan is a red circle on a white background.
- The rectangle is 150 by 100.
- The circle is in position 45,20, width and height are 60,60.
- The dark lines are NOT part of the flag. They are shown as guides only.
g.fillOval(0,0,150,100)
will fill an oval bounded by the whole shape.
See Draw Circle
[Font]
[Default]
[Show]
[Resize]
[History]
[Profile]
Now you can try any of: Rectangles Quick Quiz, Harder Problems with Rectangles Lecture 2 Support