summaryrefslogtreecommitdiff
path: root/doxygen/man/man3/graph.3
diff options
context:
space:
mode:
Diffstat (limited to 'doxygen/man/man3/graph.3')
-rw-r--r--doxygen/man/man3/graph.390
1 files changed, 0 insertions, 90 deletions
diff --git a/doxygen/man/man3/graph.3 b/doxygen/man/man3/graph.3
deleted file mode 100644
index 62674e3..0000000
--- a/doxygen/man/man3/graph.3
+++ /dev/null
@@ -1,90 +0,0 @@
-.TH "graph" 3 "Fri Sep 9 2011" "Cmd2" \" -*- nroff -*-
-.ad l
-.nh
-.SH NAME
-graph \-
-.SH SYNOPSIS
-.br
-.PP
-.SS "Functions"
-
-.in +1c
-.ti -1c
-.RI "def \fBlabel\fP"
-.br
-.ti -1c
-.RI "def \fBline\fP"
-.br
-.ti -1c
-.RI "def \fBtech\fP"
-.br
-.in -1c
-.SH "Function Documentation"
-.PP
-.SS "def graph::label (txt)"
-.PP
-Definition at line 5 of file graph\&.py'\&.
-.PP
-Referenced by line()\&.
-.PP
-.nf
-5
-6 def label(txt):
-7 write(txt, font=('Arial', 20, 'italic'))
-8 hideturtle()
-9 width(6)
-
-.fi
-.SS "def graph::line (len, _label)"
-.PP
-Definition at line 10 of file graph\&.py'\&.
-.PP
-References label()\&.
-.PP
-Referenced by tech()\&.
-.PP
-.nf
-10
-11 def line(len, _label):
-12 start = pos()
-13 pd()
-14 forward(len)
-15 pu()
-16 forward(30)
-17 pd()
-18 label(_label)
-19 pu()
-20 goto(start)
-
-.fi
-.SS "def graph::tech (x, y, _label)"
-.PP
-Definition at line 21 of file graph\&.py'\&.
-.PP
-References line()\&.
-.PP
-.nf
-21
-22 def tech(x, y, _label):
-23 pu()
-24 goto(x, y)
-25 pd()
-26 write(_label, font=('Arial', 40, 'bold'))
-27 pu()
-28
-29 line(600, 'Easy to write')
-30 left(90)
-31 line(600, 'Easy to use')
-32
-33 tech(-360, 160, 'GUI')
-34 tech(-390, 100, 'AJAX')
-35 tech(-300, -10, 'webapp')
-36 tech(190, -380, 'CLU')
-37 tech(60, -320, 'TUI')
-38 tech(100, -210, 'cmd')
-39 tech(80, -80, 'cmd2')
-
-.fi
-.SH "Author"
-.PP
-Generated automatically by Doxygen for Cmd2 from the source code'\&.