diff options
author | Zearin <zearin@gonk.net> | 2011-10-07 10:35:21 -0400 |
---|---|---|
committer | Zearin <zearin@gonk.net> | 2011-10-07 10:35:21 -0400 |
commit | 07b4dc3d6991cbdc420c246e807371c97a467d1a (patch) | |
tree | 329febd532aedfcd4daf92c807e802d1535c8f88 /doxygen/man/man3/graph.3 | |
parent | 36a2424cfd8c44d9f63bb4e2d7ac69cf7bce3940 (diff) | |
parent | 04cdcb0feb369ac4c60e10ccdc139c57e8b52e62 (diff) | |
download | cmd2-master.tar.gz |
Diffstat (limited to 'doxygen/man/man3/graph.3')
-rw-r--r-- | doxygen/man/man3/graph.3 | 90 |
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'\&. |