DOT_Language DOT_Language

DOT Language - Definition and Overview

Related Words: Afghan, Afghani, Afrikaans, Ainu, Akan, Akkadian, Albanian, Aleut, Algonquian, Algonquin, Amharic, Anatolian, Andaman, Apache, Arabic, Aramaic, Araucanian, Arawak, Arawakan, Armenian, Aryan, Assamese

DOT is a plain text graph description language. It's an intuitive and simple way of describing graphs. Dotty is the tool that reads DOT scripts and renders the graphs.

A simple graph example

Following is an example script that describes the bonding structure of an ethane molecule.

A visual rendering of the script by using the tool dotty

graph ethane {
 C_0--H_0 [type=s];
 C_0--H_1 [type=s];
 C_0--H_2 [type=s];
 C_0--C_1 [type=s];
 C_1--H_3 [type=s];
 C_1--H_4 [type=s];
 C_1--H_5 [type=s];
}

See also Graphviz, dotty

External links

Copyright 2009 WordIQ.com - Privacy Policy  :: Terms of Use  :: Contact Us  :: About Us
This article is licensed under the GNU Free Documentation License. It uses material from the this Wikipedia article.