From 04cdcb0feb369ac4c60e10ccdc139c57e8b52e62 Mon Sep 17 00:00:00 2001 From: Zearin Date: Fri, 7 Oct 2011 10:34:23 -0400 Subject: Removed leftovers from installing with pip. Oops! I noticed there was a bunch of extra crap left over from when I installed this module onto my own system. I thought it wouldn't have modified itself at the time (just the Python module library on my system), but I was wrong. Begone, useless cruft! --- doxygen/html/schematic_8py_source.html | 160 --------------------------------- 1 file changed, 160 deletions(-) delete mode 100644 doxygen/html/schematic_8py_source.html (limited to 'doxygen/html/schematic_8py_source.html') diff --git a/doxygen/html/schematic_8py_source.html b/doxygen/html/schematic_8py_source.html deleted file mode 100644 index 7a21fc1..0000000 --- a/doxygen/html/schematic_8py_source.html +++ /dev/null @@ -1,160 +0,0 @@ - - - - -Cmd2: /Users/amrogers/Developer/Projects/cmd2/docs/pycon2010/schematic.py Source File - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
-
Cmd2 - -
- -
-
- - - - - -
-
- -
-
-
- -
-
-
-
schematic.py
-
-
-Go to the documentation of this file.
00001 from turtle import *
-00002 hideturtle()
-00003 width(6)
-00004 pensize = 10
-00005 pu()
-00006 goto(0,-400)
-00007 
-00008 def rectangle(x, y, _label):
-00009     pu()
-00010     seth(0)
-00011     backward(x / 2)
-00012     fontsize = 40
-00013     pd()
-00014     for i in range(2):
-00015         forward(x)
-00016         left(90)
-00017         forward(y)
-00018         left(90)
-00019     pu()
-00020     forward(x / 2)
-00021     left(90)
-00022     forward(y / 2 - fontsize)
-00023     pd()
-00024     write(_label, align='center', font=('Arial', fontsize, 'bold'))    
-00025 
-00026 rectangle(800, 80, 'cmd')
-00027 pu()
-00028 forward(80)
-00029 rectangle(200, 400, 'cmd2')
-00030 
-00031 while True:
-00032     pass
-
-
- - - - - -- cgit v1.2.1