Dot rendering library

Example:

import dot

var graph = new DotGraph("G", "digraph")

var hello = graph.add_node("hello")
var world = graph.add_node("world")

graph.add_edge(hello, world)

print graph.to_dot

All subgroups and modules

module dot

dot :: dot

Dot rendering library
group examples

dot > examples

package_diagram dot\> dot core core dot\>->core dot\>examples\> examples dot\>examples\>->dot\>

Ancestors

group codecs

core > codecs

Group module for all codec-related manipulations
group collection

core > collection

This module define several collection classes.
group text

core > text

All the classes and methods related to the manipulation of text entities

Parents

group core

core

Nit common library of core classes and methods

Children

group examples

dot > examples