summaryrefslogtreecommitdiff
path: root/graphics/dot2tex/doc/docgraphs/balls.dot
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/dot2tex/doc/docgraphs/balls.dot')
-rw-r--r--graphics/dot2tex/doc/docgraphs/balls.dot13
1 files changed, 13 insertions, 0 deletions
diff --git a/graphics/dot2tex/doc/docgraphs/balls.dot b/graphics/dot2tex/doc/docgraphs/balls.dot
new file mode 100644
index 0000000000..0a8a82d5c4
--- /dev/null
+++ b/graphics/dot2tex/doc/docgraphs/balls.dot
@@ -0,0 +1,13 @@
+// This graph uses special PGF/TikZ styles to create some interesting
+// visual effects. To get the snaked edges run dot2tex with the -s option
+// to force straight edges. Example
+// $ fdp -Txdot balls.dot | dot2tex -s > balls.tex
+graph G {
+ node [shape=circle, fixedsize=True, width="0.2", style="ball color = green", label=""];
+ edge [style="snake=zigzag, green"];
+ a_1 -- c -- a_2;
+ c [style="ball color=black"];
+ edge [style="snake=snake, blue", color=red];
+ node [style="ball color = red", label=""];
+ a_3 -- c -- a_4 --a_3;
+} \ No newline at end of file