File: biofuel.txt

package info (click to toggle)
libgraph-easy-perl 0.76-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,264 kB
  • sloc: perl: 23,869; makefile: 7
file content (27 lines) | stat: -rw-r--r-- 608 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
23
24
25
26
27
# Example from: http://www.islandseeds.org/wiki/Biofuel
# http://www.islandseeds.org/wiki/Biofuel

graph { flow: east; }
node { shape: ellipse; }

   [ solar energy ] { fill: yellow; }
   [ water] { fill: cyan; }
   [ soil ] { fill: burlywood; }

-> [ vegetation ]
-> [ processing ]
-> [ biofuel ]
-> [ combustion ]
-> [ useful work ] { fill: lightgray; }

[ combustion ] -> [ carbon dioxide ]
[ combustion ] -> [ pollution ]

[ processing ] ..> [ compost ] ..> [ soil ]
[ processing ] ..> [ carbon dioxide ]
[ processing ] ..> [ pollution ]

[ water ] -> [ vegetation ]
[ solar energy ] -> [ vegetation ]