package ocamlgraph

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type graph = [
  1. | `Center of bool
  2. | `Fontcolor of color
  3. | `Fontname of string
  4. | `Fontsize of int
  5. | `HtmlLabel of string
  6. | `Label of string
  7. | `OrderingOut
  8. | `Orientation of [ `Landscape | `Portrait ]
  9. | `Page of float * float
  10. | `Pagedir of [ `LeftToRight | `TopToBottom ]
  11. | `Size of float * float
]
type vertex = [
  1. | `Color of color
  2. | `ColorWithTransparency of color_with_transparency
  3. | `Fontcolor of color
  4. | `Fontname of string
  5. | `Fontsize of int
  6. | `Height of float
  7. | `HtmlLabel of string
  8. | `Label of string
  9. | `Orientation of float
  10. | `Penwidth of float
  11. | `Peripheries of int
  12. | `Regular of bool
  13. | `Shape of [ `Assembly | `Box | `Box3d | `Cds | `Circle | `Component | `Diamond | `Doublecircle | `Doubleoctagon | `Egg | `Ellipse | `Fivepoverhang | `Folder | `House | `Insulator | `Invhouse | `Invtrapezium | `Invtriangle | `Larrow | `Lpromoter | `Mcircle | `Mdiamond | `Msquare | `Note | `Noverhang | `Oval | `Parallelogram | `Plaintext | `Polygon of int * float | `Primersite | `Promoter | `Proteasesite | `Proteinstab | `Rarrow | `Record | `Restrictionsite | `Ribosite | `Rnastab | `Rpromoter | `Signature | `Star | `Tab | `Terminator | `Threepoverhang | `Trapezium | `Triangle | `Tripleoctagon | `Underline | `Utr ]
  14. | `Style of [ `Bold | `Dashed | `Dotted | `Filled | `Invis | `Rounded | `Solid ]
  15. | `Width of float
]
type edge = [
  1. | `Color of color
  2. | `ColorWithTransparency of color_with_transparency
  3. | `Decorate of bool
  4. | `Dir of [ `Back | `Both | `Forward | `None ]
  5. | `Fontcolor of color
  6. | `Fontname of string
  7. | `Fontsize of int
  8. | `HtmlLabel of string
  9. | `Label of string
  10. | `Labelfontcolor of color
  11. | `Labelfontname of string
  12. | `Labelfontsize of int
  13. | `Penwidth of float
  14. | `Style of [ `Bold | `Dashed | `Dotted | `Invis | `Solid ]
]