diff docs/pycon2010/schematic.py @ 351:8a5bc9f5c28e

cmd2 docs
author catherine@Drou
date Tue, 16 Feb 2010 23:07:04 -0500
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/pycon2010/schematic.py	Tue Feb 16 23:07:04 2010 -0500
@@ -0,0 +1,32 @@
+from turtle import *
+hideturtle()
+width(6)
+pensize = 10
+pu()
+goto(0,-400)
+
+def rectangle(x, y, _label):
+    pu()
+    seth(0)
+    backward(x / 2)
+    fontsize = 40
+    pd()
+    for i in range(2):
+        forward(x)
+        left(90)
+        forward(y)
+        left(90)
+    pu()
+    forward(x / 2)
+    left(90)
+    forward(y / 2 - fontsize)
+    pd()
+    write(_label, align='center', font=('Arial', fontsize, 'bold'))    
+
+rectangle(800, 80, 'cmd')
+pu()
+forward(80)
+rectangle(200, 400, 'cmd2')
+
+while True:
+    pass