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/namespacegraph.html | 268 --------------------------------------- 1 file changed, 268 deletions(-) delete mode 100644 doxygen/html/namespacegraph.html (limited to 'doxygen/html/namespacegraph.html') diff --git a/doxygen/html/namespacegraph.html b/doxygen/html/namespacegraph.html deleted file mode 100644 index 75351eb..0000000 --- a/doxygen/html/namespacegraph.html +++ /dev/null @@ -1,268 +0,0 @@ - - - - -Cmd2: graph Namespace Reference - - - - - - - - - - - - - - -
- - -
- - - - - - - - - - - -
-
Cmd2 - -
- -
-
- - - - - -
-
- -
-
-
- -
-
- -
-
graph Namespace Reference
-
-
- - - - - -

-Functions

def label
def line
def tech
-

Function Documentation

- -
-
- - - - - - - - -
def graph::label ( txt)
-
-
- -

Definition at line 5 of file graph.py.

- -

Referenced by line().

-
00005 
-00006 def label(txt):
-00007     write(txt, font=('Arial', 20, 'italic'))
-00008 hideturtle()
-00009 width(6)
-
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - -
def graph::line ( len,
 _label 
)
-
-
- -

Definition at line 10 of file graph.py.

- -

References label().

- -

Referenced by tech().

-
00010 
-00011 def line(len, _label):
-00012     start = pos()
-00013     pd()
-00014     forward(len)
-00015     pu()
-00016     forward(30)
-00017     pd()
-00018     label(_label)
-00019     pu()
-00020     goto(start)
-
-
-
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
def graph::tech ( x,
 y,
 _label 
)
-
-
- -

Definition at line 21 of file graph.py.

- -

References line().

-
00021 
-00022 def tech(x, y, _label):
-00023     pu()
-00024     goto(x, y)
-00025     pd()
-00026     write(_label, font=('Arial', 40, 'bold'))
-00027     pu()
-00028     
-00029 line(600, "Easy to write")
-00030 left(90)
-00031 line(600, "Easy to use")
-00032 
-00033 tech(-360, 160, 'GUI')
-00034 tech(-390, 100, 'AJAX')
-00035 tech(-300, -10, 'webapp')
-00036 tech(190, -380, 'CLU')
-00037 tech(60, -320, 'TUI')
-00038 tech(100, -210, 'cmd')
-00039 tech(80, -80, 'cmd2')
-
-
-
-
-
-
- - - - - -- cgit v1.2.1