File: dot_graphs.h

package info (click to toggle)
breathe 4.36.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,224 kB
  • sloc: python: 12,703; cpp: 1,737; makefile: 523; xml: 168; sh: 54; ansic: 52
file content (22 lines) | stat: -rw-r--r-- 581 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * @file dot_graphs.h
 *
 * @page dotgraphs Dot Graph Demonstrations
 *
 * @section dotcmd Using \@dot command
 *
 * @dot "basic graph elements"
 * digraph G {
 *     bgcolor="purple:pink" label="a graph" fontcolor="white"
 *     subgraph cluster1 {
 *         fillcolor="blue:cyan" label="a cluster" fontcolor="white" style="filled" gradientangle="270"
 *         node [shape=box fillcolor="red:yellow" style="filled" gradientangle=90]
 *		"a node";
 *    }
 * }
 * @enddot
 *
 * @section dotfilecmd Using \@dotfile command
 *
 * @dotfile "dotfile.dot" "Captions go here"
 */