Create a Scratch project to input the number of sides and display the geometrical figure of that many sides.
You can use a different color pen and width.
Answers
Answer:
A square is very easy to draw. Use this custom block if you want it in the sprite's direction:
define
square
size
pen
down
repeat
4
move
size
steps
turn
90
degrees
If you always want it at 90°, then use this:
define
square
size
pen
down
change
x
by
size
change
y
by
join
-
size
change
x
by
join
-
size
change
y
by
size
Your sprite will now draw a square when you run the block.
Rectangle
A rectangle is only slightly harder to draw. Use this block:
define
rectangle
height
height
width
width
repeat
2
move
width
steps
turn
90
degrees
move
height
steps
turn
90
degrees
Your sprite will now draw a rectangle when you run the block.
Circle
A circle is is slightly harder to draw than a rectangle. Use this block:
define
circle
size
repeat
round
360
/
size
move
size
steps
turn
size
degrees
Your sprite will now draw a circle when you run the block.