Draw a Wheel of Colors
This is a classic example of how you can create stunning graphics in just a few lines of Logo code.
ColorSpray.lgo
to color.spray
cs
setbg 0
setwidth 25
REPEAT 180 [SETPC RANDOM 15 FD 100 BK 100 RT 2]
end
color.spray
Procedure | COLOR.SPRAY |
Description | Draws a color wheel |
Level | Beginner |
Tags | Drawing, Colors, Turtle |