summaryrefslogtreecommitdiffstats
path: root/tde-i18n-nl/data/tdeedu/kturtle/kleuren.logo
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-12-03 11:05:10 -0600
committerTimothy Pearson <[email protected]>2011-12-03 11:05:10 -0600
commitf7e7a923aca8be643f9ae6f7252f9fb27b3d2c3b (patch)
tree1f78ef53b206c6b4e4efc88c4849aa9f686a094d /tde-i18n-nl/data/tdeedu/kturtle/kleuren.logo
parent85ca18776aa487b06b9d5ab7459b8f837ba637f3 (diff)
downloadtde-i18n-f7e7a923aca8be643f9ae6f7252f9fb27b3d2c3b.tar.gz
tde-i18n-f7e7a923aca8be643f9ae6f7252f9fb27b3d2c3b.zip
Second part of prior commit
Diffstat (limited to 'tde-i18n-nl/data/tdeedu/kturtle/kleuren.logo')
-rw-r--r--tde-i18n-nl/data/tdeedu/kturtle/kleuren.logo33
1 files changed, 33 insertions, 0 deletions
diff --git a/tde-i18n-nl/data/tdeedu/kturtle/kleuren.logo b/tde-i18n-nl/data/tdeedu/kturtle/kleuren.logo
new file mode 100644
index 00000000000..8c36ba7f03d
--- /dev/null
+++ b/tde-i18n-nl/data/tdeedu/kturtle/kleuren.logo
@@ -0,0 +1,33 @@
+# 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
+]
+
+]