You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
493 B
34 lines
493 B
# kleuren demo
|
|
|
|
canvaskleur 255,255,255
|
|
verberg
|
|
|
|
herhaal 5 [
|
|
|
|
voor c = 0 tot 255 [
|
|
canvaskleur 255-c,255,255
|
|
]
|
|
voor c = 0 tot 255 [
|
|
canvaskleur 0,255-c,255
|
|
]
|
|
voor c = 0 tot 255 [
|
|
canvaskleur c,0,255
|
|
]
|
|
voor c = 0 tot 255 [
|
|
canvaskleur 255,c,255-c
|
|
]
|
|
voor c = 0 tot 255 [
|
|
canvaskleur 255,255-c,0
|
|
]
|
|
voor c = 0 tot 255 [
|
|
canvaskleur 255,0,c
|
|
]
|
|
voor c = 0 tot 255 [
|
|
canvaskleur 255-c,0,255-c
|
|
]
|
|
voor c = 0 tot 255 [
|
|
canvaskleur c,c,c
|
|
]
|
|
|
|
]
|